mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 05:07:47 +00: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);
|
||
|
?>
|