This commit is contained in:
2026-04-08 08:49:36 +02:00
parent 91524fb5e5
commit c165b74c99
26 changed files with 965 additions and 0 deletions
@@ -0,0 +1,16 @@
<?php
function _getConnection()
{
static $_conn = NULL;
if ($_conn === NULL){
$_conn = mysqli_connect("localhost","","","");
}
return $_conn;
}
function getFilms()
{
// A completer
}
?>