I know very little about PHP overall, but my guesses would be that it's with the if-else structure and the echo statement. Try using curly braces ("{ }") in the if-else like:
if (condition)
{
statements;
}
else
{
statements;
}
And the echo, if you're trying to output that string, it might have to be:
For arrays, you use [ and ], not { and }.
When making an argument, it goes like this:
if($variable1==$variable2){
//my code here
}
Be sure to close if statements with }. That's the main reason why you're getting an unexpected else error:
Because an if statement must be properly written first to accompany the else.
Like <html> goes with </html>.
Starting and closing.
Ying and yang.
[repost]
Yes. A semicolon almost universally ends the "line" of code and proceeds to the next unbraced statement. When you place one at the end of a condition, the expression is evaluated, but nothing is done based on it. Obviously that defeats the purpose of checking the condition, so you don't want that.