test_2.php 243 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 <?php $username = "dev"; $password = "dev123456"; $hostname = "dev.fgct.net"; //connection to the database $dbhandle = mysql_connect($hostname, $username, $password) or die("Unable to connect to MySQL"); echo "Connected to MySQL<br>"; ?>