From:             [EMAIL PROTECTED]
Operating system: Win2000 adv. server
PHP version:      4.0.6
PHP Bug Type:     IIS related
Bug description:  Error

This is my php file:

<?php
/* A You have been here... script
   By Neil Edwards
   [EMAIL PROTECTED]
                                           */


if ($Test != '')   //if there is a cookie stored
{
$Test++;   //increase the value of $Test by 1
SetCookie("Test",$Test, time()+3600000);   //Set the cookie with the name
}
else  //else if the cookie does not exist
{
SetCookie("Test",1, time()+3600000);  //Create one with the value of 1
}
?>

<?php
// Put this somewhere else in your page
echo("You have been here ");  //Display You have been here
echo $Test;   //$Test
echo (" times");   //times. This is all on one line
?>

When I open any php file have this error:

Warning: Failed opening '\\laiserver\Web Space\Ronald\test.php' for
inclusion (include_path='') in Unknown on line 0

Where can I fix the problem
-- 
Edit bug report at: http://bugs.php.net/?id=12359&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to