image file copying!
Warning: copy(c:\inetpub\wwwroot\aaa\imgaes\44.jpg): failed to open stream: No such file or directory in c:\inetpub\wwwroot\aaa\thanks.php on line 45
Ur file could not copied
I am getting this error while executing this lines of code:
if(isset($_REQUEST['picfile']))
{
$img_name=$_REQUEST['studentid'].".jpg";
$destination="c:\\inetpub\wwwroot\\aaa\\imgaes\\". $img_name;
if(copy($_REQUEST['picfile'],$destination))
{
print "Ur file has been copied";
}
else
{
print "Ur file could not copied";
}
unlink($_REQUEST['picfile']);
}
I will b very thankful to you for removin this error, Thank you.
|