Hi
I currently have a php page, containing only the following code between the BODY tags (same problem if I put it between the HEAD tags):
<?php
$v = "try.txt";
touch("$v");
?>
I run this locally, on a Windows Me machine, so no problems with file ownership and privileges. When I run the script, the empty file try.txt is created, as it should be, but it always returns the following error as well:
Warning: utime failed: Invalid argument in e:\webserver\www\test.php on line 18
(Line 18 is the one that says touch("$v"); )
Does anyone know what this error means and how I can prevent it?
Thanks
Stille