mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
7 lines
184 B
PHP
7 lines
184 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);
|
|
?>
|