You made the mySQL connections a bit complicated for beginners
Where you put this
$username = ""; // MySQL Username
$password = ""; //MySQL Password
$server = ""; // MySQL server you wish to connect to. Usually "localhost"
$mysqlconnection = mysql_connect($server, $username, $password)...