Hi. I am getting the same error no matter how many times I manipulate the data. Could somebody pls help? I am trying to get PHP to connect to mySQL on the same (local) machine and keep getting:
Parse error: parse error in /my_path/entry.php on line 4
when I go to line 4 I see that it is the dbconnect.php include. For dbconnect I have:
mysql_connect(\"127.0.0.1\", \"root\", \"my_pwd\") or
die(\"Could not connect\");
mysql_select_db(\"guestbook\") or
die(\"Could not select\");
Am I missing something here? Any advice would be very much appreciated.
Thanks!