Posted by Janwillem Borleffs on 12/11/05 17:07
Stefan Mueller wrote:
> Why can't I include/require a file starting with the letter 't'?
> <?php
> require "C:\t.php";
>>
>
You can, but because of the double quotes, the backslash is interpreted as
an escape character.
To fix this, you have the following options:
* Use single quotes:
require 'C:\t.php';
* Use forward slashes:
require "C:/t.php";
JW
Navigation:
[Reply to this message]
|