PDA

View Full Version : parse error


Delphiprogrammi
10-02-2005, 02:21 PM
hi people,

i'm trying to ise vbmail() but before the call to this function i try to check if there is a valid webmaster email filled in in the vbulletin settings so ...


if(empty($vbulletin->options['webmasteremail']) OR $vbulletin->options['webmasteremail'] == '')
{
die("no valid email adress setup in the vbulletin settings");
}
else
{
//allright send the mail

}
?>



parse error unexpected $


:confused:

Marco van Herwaarden
10-02-2005, 02:33 PM
Please provide more code of your script.

Delphiprogrammi
10-02-2005, 02:55 PM
Please provide more code of your script.

well php reports a linenumber but that linenumber is the end of the file just before the closing php tag (?>) parse errors are (usually) syntax related ... gonna look for it for a while if somebody else solves my problem i don't leatrn anything ...

filburt1
10-02-2005, 03:28 PM
If it's the last line of your code, it usually means you forgot to close a brace, bracket, etc.

Marco van Herwaarden
10-03-2005, 04:20 PM
Or you have a space or newline after the php closing tag.