javais zapper beaucoup de truc...

This commit is contained in:
2023-09-20 12:11:33 +02:00
parent d934da10c1
commit f8b2e47118
24 changed files with 1243 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
<?php
function _getConnection()
{
static $_conn = NULL;
if ($_conn === NULL){
$_conn = mysqli_connect("localhost","","","");
}
return $_conn;
}
function getFilms()
{
// A completer
}
?>