mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
7 lines
177 B
PHP
7 lines
177 B
PHP
<?php
|
|
$link = mysql_connect('hostname','dbuser','dbpassword');
|
|
if (!$link) {
|
|
die('Could not connect to MySQL: ' . mysql_error());
|
|
}
|
|
echo 'Connection OK'; mysql_close($link);
|
|
?>
|