I'm trying to make a HTML form connect to a MySQL database on my MAMP.
However I'm not able to open the MySQL connection. I keep getting the message "Could not connect"
My thoughts for this -
- The host is incorrect
- The username and/or password is incorrect. I found this information in config.inc.php, so I believe it is correct, but there's a possibility ..
Here's the PHP script
<?php
class Database {
function insert() {
$dbhost = 'localhost:8888';
$conn = mysql_connect($dbhost, 'root', 'root');
if (! $conn) {
die('Could not connect: ' . mysql_error());
}
else {
echo "connected";
}
}
}
?>