They had me generate code that I replaced the Connections/localhost.php includes in index.php page with:
<?php
$link = mysql_connect('hornharmony.fatcowmysql.com', 'durable', '*password*');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_select_db(toy_test);
?>
However, I am still getting an error related to the localhost, which I am going to configure now that I have information on how to connect...
Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in /hermes/web05b/b854/moo.hornharmony/toy/CSSMenuWriter/cssmw_home/menu.php on line 65
Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in /hermes/web05b/b854/moo.hornharmony/toy/CSSMenuWriter/cssmw_home/menu.php on line 67


