Files
web_2025/R3.01/tp/tp3/cinema/src/modeles/modeleFilms.php
T

17 lines
195 B
PHP
Raw Normal View History

2026-04-08 08:49:36 +02:00
<?php
function _getConnection()
{
static $_conn = NULL;
if ($_conn === NULL){
$_conn = mysqli_connect("localhost","","","");
}
return $_conn;
}
function getFilms()
{
// A completer
}
?>