FN-FORUM: This is driving me mad
date posted 2nd August 2005 18:41
I have the following bit of code duting a file upload
echo filesize($res1);
$res = copy($res1, $p.$i_name);
echo filesize($res1);
echo filesize($p.$i_name);
echo filesize($res1) come out as 93605 but echo filesize($p.$i_name) is 0 -
why? $res is true so the copy isn't failing.
Thanks
Pam