I've spent hours on the forums trying to figure out how to connect successfully to my database.
The script I'm using is:
$con = mysql_connect("localhost","jasonw_****","****");
if(!$con)
{
die('Could not connect: ' .mysql_error());
}
mysql_select_db("Poll", $con);
I used MySQL Databases to...