-
PHP Image Upload Script Error
I’m trying to put an image upload on my page and everything works until it tries to redirect to the success page which gives me this error:
Warning: Cannot modify header information – headers already sent by (output started at /home/amlynn0/public_html/studios/upload.processor.php:7) in /home/amlynn0/public_html/studios/upload.processor.php on line 97
on line 97 is this:
header(‘Location: ‘ . $uploadSuccess);
and $uploadSuccess is this:
$uploadSuccess = ‘https://’ . $_SERVER[‘HTTP_HOST’] . $directory_self . ‘upload.success.php’;
I’ve tried to put header(); on my success page like some other forums suggested, but it didn’t work.
Any suggestions?