The following code:
<?php
// Include the MySQL class
ini_set("include_path",'\include "MySQL.php";
?>
works on a unix based server but on our windows based server gives the error message:
Parse error: parse error, unexpected $end in E:\IntraNetData\ on line 9
If I change the quotes to " instead of ' the error changes to:
Parse error: parse error, unexpected T_STRING in E:\IntraNetData\ on line 5
I'm thinking along the lines of characters being escaped incorrectly but I still haven't found a way of getting the code to run correctly. Has anyone any suggestions ?
<?php
// Include the MySQL class
ini_set("include_path",'\include "MySQL.php";
?>
works on a unix based server but on our windows based server gives the error message:
Parse error: parse error, unexpected $end in E:\IntraNetData\ on line 9
If I change the quotes to " instead of ' the error changes to:
Parse error: parse error, unexpected T_STRING in E:\IntraNetData\ on line 5
I'm thinking along the lines of characters being escaped incorrectly but I still haven't found a way of getting the code to run correctly. Has anyone any suggestions ?