The problem I am having is that I cannot connect to my database, I get this error:
Warning: mysql_connect(): Access denied for user
I copied the username and password from the email that they sent, but am still unable to connect. Here is the code that I am using (minus my username and password):
<?php
echo "<p>Hello World</p>";
$link = mysql_connect("localhost", "username", "password")
or die("Could not connect: " . mysql_error());
print ("Connected successfully");
mysql_close($link);
?>
Thanks,
Joe