View Single Post
Old 10-13-2012, 01:45 AM   PM User | #5
Inigoesdr
Super Moderator


 
Inigoesdr's Avatar
 
Join Date: Mar 2007
Location: Florida, USA
Posts: 3,601
Thanks: 2
Thanked 397 Times in 390 Posts
Inigoesdr is a jewel in the roughInigoesdr is a jewel in the roughInigoesdr is a jewel in the rough
Quote:
Originally Posted by SeattleMicah View Post
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']){ 
Inigoesdr is offline   Reply With Quote