i don't know many methods for getting the same thing to work...so i'll just post my question...
there's much more script...this is just part of it...but the "header..." gives me this error message...
"Warning: Cannot add header information - headers already sent by (output started at /home/domains/form2.php:5) in /home/domains/form2.php on line 198"
if ($success)
{
header("Location: thanks.php");
} else {
// ERROR uploading...
if($my_uploader->errors) {
while(list($key, $var) = each($my_uploader->errors)){
echo $var . "<br>";
}
}
}
}
line 198 is just html code...
i'm rather confused...any ideas?
thanks...jv