thanks a lot Jason, made those changes and now all the page is doing is refreshing. doesn't seem to be uploading to my server, i waited 30 min and still no pic in my images folder.... the error im getting at the top of the page is
"UploadNotice: Undefined variable: firstFile in C:\wamp\www\DBAtest\WA_DigitalFilePro\HelperPHP.php on line 334"
helperphp.php is my script for my upload behavior... here is a few lines previous to 334
if($counter == 0){ // set first upload values into V1 status values
$_SESSION[$sessionName] = $defaultFileName;
foreach($WA_DFP_UploadStatus[$statusName][$key] as $subkey=>$subval){
$WA_DFP_UploadStatus[$statusName][$subkey] = $subval;
}
}
$counter++;
}
}
here is the error line (334) + the rest in that string(-338)
if (file_exists($firstFile)) {
unlink($firstFile);
}
return;
}
Cant quite get a grip on what exactly i can do to fix this.. if anyone has any ideas lemme know, thanks again guys