07-12-2008, 07:14 AM
|
#8 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
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
|
|
|
|