Candle/connect_db.php

15 lines
446 B
PHP
Raw Normal View History

2023-05-26 16:39:10 +02:00
<?php
$db_link = mysqli_connect('localhost', 'web_b-3', 'een7Ao6s', 'bibliothek_candle', '3306');
2023-05-31 16:03:16 +02:00
if(!$db_link){
die("<p>Verbindung nicht hergestellt</p>");
}else{
echo("<p>Verbindung wurde hergestellt</p>");
}
function runSQL($sql){
global $db_link;
$db_res = mysqli_query($db_link, $sql) or die("SQL_Abfrage: " . $sql . "Fehler: " . mysqli_error($db_link));
return $db_res;
}
2023-05-30 13:54:44 +02:00
2023-05-26 16:39:10 +02:00
?>