mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 16:44:24 +00:00
786cbf1f8e
1) Removed unnecessary files 2) Trailling spaces (no all though) 3) Some space to tab conversion
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);
|
|
?>
|