Thread: Parse Error
View Single Post
Old 11-17-2003, 04:17 PM   #2 (permalink)
bdl
Senior Contributor
 
Join Date: May 2002
Location: vta.ca.usa
Posts: 555
bdl is on a distinguished road
PHP Code:
if (empty($music)) {
                
$music "Not listening to music";
    { 
You have an opening brace where you should have a closing one. The parser expects to find the closing brace but can't so it errors out past the last line in the script.



BTW you also have a typo:
PHP Code:
if (empty($mesage)) { 
bdl is offline   Reply With Quote