mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 10:41:56 +01:00
14 lines
197 B
PHP
14 lines
197 B
PHP
|
<?php
|
||
|
$server = "localhost";
|
||
|
$user = "pearson";
|
||
|
$pass = "geheim";
|
||
|
|
||
|
$dbh = mysql_connect($server, $user, $pass);
|
||
|
if($dbh)
|
||
|
{
|
||
|
echo "MySQL-Verbindung erfolgreich!";
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
|