I asked this question 20 minutes ago but when I inserted the code, the site takes a long time to load. I received the following error messages, 10 minutes later:
Warning: mysql_connect(): MySQL server has gone away in C:\xampp\htdocs\ShareLife\inc\scripts\mysql_connect.inc.php on line 11
Warning: mysql_connect(): Error while reading greeting packet. PID=2252 in C:\xampp\htdocs\ShareLife\inc\scripts\mysql_connect.inc.php on line 11
Warning: mysql_connect(): MySQL server has gone away in C:\xampp\htdocs\ShareLife\inc\scripts\mysql_connect.inc.php on line 11
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\ShareLife\inc\scripts\mysql_connect.inc.php on line 11
Using the following code:
<?php
$conn_error = 'Colud not connect.';
$mysql_host = "localhost:8080";
$mysql_user = "liam";
$mysql_pass = "";
$mysql_db = 'socialnetwork';
mysql_connect($mysql_host, $mysql_user, $mysql_pass) or die("Couldn't Connect") ;
mysql_select_db('mysql_db') or die($conn_error);
echo 'Connected!';
?>