Hi, I am building a project and code works fine on my local WAMP setup but when I upload to remote server (PHP 5.5.9), all the text after a "->" (in an include php file) is echoed to the browser:
the code contains:
if ($stmt = $mysqli->prepare(
"SELECT id, ...
...which instead of being executed, displays on screen as:
prepare( "SELECT id,...
Anyone have an idea why this is happening? seems a bit bizarre to me but for all I know it may be obvious...