:::db_conncect.php:::
<html>
<body>
<?php
mysqli_connect("localhost", "csocc_testi", "xxx", "csoccodato_garten");
if(!$db)
{
exit("Verbindungsfehlerle: ".mysqli_connect_error());
}
?>
</body>
</html>
Deine Fehlerabfrage bringt so nichts. Die Variable $db wird nirgends gesetzt. Entweder du setzt sie:
~~~php
$db = mysqli_connect("localhost", "csocc_testi", "xxx", "csoccodato_garten");
oder änderst die Abfrage:
if (!mysqli_connect("localhost", "csocc_testi", "xxx", "csoccodato_garten")) {
...
}