Files
DEV/WEBBE/cinema/src/modeles/modeleFilms.php

17 lines
195 B
PHP
Raw Normal View History

2023-09-20 12:11:33 +02:00
<?php
function _getConnection()
{
static $_conn = NULL;
if ($_conn === NULL){
$_conn = mysqli_connect("localhost","","","");
}
return $_conn;
}
function getFilms()
{
// A completer
}
?>