I keep on getting an error

ERROR: Please make sure you update the file /includes/db_connect.php with the correct MySQL database information.

What would my Host name of my local server be ?

<?php // config $config['host'] = "?"; // host name of your mysql server= what does this mean? $config['user'] = "am1996_mustafa"; // your mysql username $config['pass'] = "********"; // your mysql password $config['db'] = "am1996_asam"; // the database your table is in. @mysql_connect("$config[host]","$config[user]","$config[pass]") or ("ERROR: Please make sure you update the file config.php with the correct MySQL database information. For further information please read README.txt"); @mysql_select_db("$config[db]") or ("ERROR: Please make sure you update the file config.php with the correct MySQL database information. For further information please read README.txt"); ?>

hostname for local server would be “localhost”

Sponsor our Newsletter | Privacy Policy | Terms of Service