just a quick uncomment cause some just run and wonder why it dose nothing
[travianx.git] / testmysql.php
blobfdb5dd887e2236b7a5676616750d04f330fcfccd
1 <?php
2 $link = mysql_connect('hostname','dbuser','dbpassword');
3 if (!$link) {
4 die('Could not connect to MySQL: ' . mysql_error());
5 }
6 echo 'Connection OK'; mysql_close($link);
7 ?>