Files
web_2025/R3.01/tp/tp3/cinema/src/modeles/modeleFilms.php
T
2026-04-08 08:49:36 +02:00

17 lines
195 B
PHP

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