maybe this will help, here is how i am calling the script:
PHP Code:
if (file_exists($_FILES['image']['tmp_name']) )
{
$getID = mysql_query("select max(id) as id from Items",$db);
list($id) = mysql_fetch_row($getID);
include ("scripts/add_image.php");
}
anything i can do?