aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/80 Beispiele/login 1/include/db_connection.inc
Harald G. Mueller 28ff49e098 muh
2023-06-29 07:50:41 +02:00

7 lines
171 B
PHP

<?php
$dbcon = mysql_connect("localhost","M133","M133")
or die("Datenbankverbindung ist fehlgeschlagen!");
mysql_select_db("login",$dbcon);
// echo $dbcon ;
?>