10 lines
144 B
PHP
Executable File
10 lines
144 B
PHP
Executable File
<?php
|
|
|
|
function initDatabase() {
|
|
$db = mysqli_connect(host,database,login,password);
|
|
if(!$db){
|
|
echo "erreur connexion";}
|
|
return $db;
|
|
}
|
|
|