View Single Post
Old 07-12-2008, 07:14 AM   #8 (permalink)
delayedinsanity
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

He forgot some curly braces is all. Change;

PHP Code:
mysql_close($link); 

else 
echo 
'There was an error during the file upload. Please try again.'// It failed Sad. 


// TO

mysql_close($link); 

} else {
echo 
'There was an error during the file upload. Please try again.'// It failed Sad. 

Edit: He forgot a few actually. That's why omitting them can be problematic. You need an opening curly { after that last IF as well.
-m
delayedinsanity is offline  
Reply With Quote