today i was getting this error in my php script and i could not figure out why i was getting it.

this is what i had in the code:

				for($i =0; $i < count($img); $i++) {
					if($img[$l] == $_FILES['uploaded']['name']){
						$_FILES['uploaded']['name'] = false;
					}
				}


can you catch the error. i know where it is.. this is how it should look like

				for($i =0; $i < count($img); $i++) {
					if($img[$i] == $_FILES['uploaded']['name']){
						$_FILES['uploaded']['name'] = false;
					}
				}

can you guess where the error is?