Quote:
Originally Posted by Goodspeed
I got just a little bug. Everything working fine, but this error allways appears when I'm adding a warning
Code:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/site/public_html/forum/Warn.php(310) : eval()'d code on line 23
Please help. Thank you!
|
this is a typical PHP syntax error basicly it means you forgot a " or ' or } { etc for example
PHP Code:
<?php
$test="this is a test"
echo $test;
?>
will generate a parse error because there is no ; at the end of the string $test you should look in the line number (or the lines above it)