Forum Moderators: coopster
I cant seem to work out why I am getting this error:
Warning: Wrong parameter count for is_uploaded_file() in edit-product.php on line 85
[php]
if (is_uploaded_file($_FILES["picture"]['tmp_name'], $_FILES["thumb"]['tmp_name']))
{
// check that pictures were uploaded
$pic = uploadFile("picture");
if(! $picName)
{
die("Error uploading the picture");
}
$thumbName = uploadFile("thumb");
if(! $thumbName)
{
die("Error uploading the thumbnail");
}
[/php]
Any help would be GREATLY appreciated :)