Quote:
Originally Posted by SeattleMicah
every upload script I use I get the error
Notice: Undefined index: ______
|
That error is caused by trying to access an array element that doesn't exist, such as this line:
PHP Code:
if (!$_POST['uploaded']){
That should be checked like this:
PHP Code:
if (!isset($_POST['uploaded']) || !$_POST['uploaded']){