Hello,
I am have 2 identical programs - 1 mysql database is running on port 3306, this is working no problem.
When I install a 2nd mysql database on port 3307, I cant connect to it and get the error posted below.
Warning: mysqli_connect() [function.mysqli-connect]: (HY000/2005): Unknown MySQL server host 'localhost:3307' (11004) in C:\Users\admin\Desktop\xampp\htdocs\statsmds\includes\header.inc on line 23
Connect failed: Unknown MySQL server host 'localhost:3307' (11004)
This is in the code to connect to the database:
// mysql host
$sql_host = "localhost:3307";
How do I connect to port 3307, everything is on the local computer.
Im sure the fix is easy - Im a newb at this stuff.
Thanks, for looking!