Click to See Complete Forum and Search --> : Parse error: parse error, unexpected '}'


ali_raza
08-08-2007, 09:10 PM
I wrote a code in php and put all closing and their respective opeing brackets too but it gives me error like

Parse error: parse error, unexpected '}'

Any one know what mistake i have been made

ellisgl
08-08-2007, 09:19 PM
Show the code around the line that the error happens.. most likely you forgot to close another tag or you are doing someting like this
if($a == $b);
{
...
}

The semi colon after the if() and before the {..