On Jan 4, 2006, at 4:28 PM, zedleon wrote:
$fp = fopen("home/path/temp "w+");
You only got 3 quotes in the above code...
try this:
$fp = fopen("home/path/temp", "w+");
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

