MyBB Community Forums

Full Version: Error?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/clients/skydom.co.uk/forum/htdocs/global.php(271) : eval()'d code on line 3
how do i remove it its on my idenx.php page
heloo there

if u have done any change to the global.php or index.php , revert them, and then post them here, as u might need them fixed

regards
Did you recently install a modification?
From the error, it looks like you've or the mod you used has added something like this:
$samepl = "Hello$sample['test']";
it should actually be
$samepl = "Hello".$sample['test'];
You seem to have added some PHP or some evil markup into the templates. Please revert any template changes you've made.