';
return $html;
}
//Process form:
public function procesaFormulario($datos) {
$result =array();
$name = $this->test_input($datos['name'])??null;
if(empty($name)){
$result['name']= "El nombre no es válido";
}
$direction = $this -> test_input($datos['direction']) ?? null;
if(empty($direction)){
$result['direction'] = "La dirección no es valida";
}
$phone = $this -> test_input($datos['phone']) ?? null;
if(empty($phone)){
$result['phone'] = "El teléfono no es valido";
}
if(count($result)===0){
$bd = new Cinema_DAO('complucine');
$exist = $bd -> GetCinema($name,$direction);
if(mysqli_num_rows($exist)!=0){
$result[] = "Ya existe un cine con ese nombre o dirección";
}
else{
$bd->createCinema(null,$name,$direction,$phone);
$_SESSION['message'] = "
Operacion realizada con exito
Se ha añadido el cine correctamente en la base de datos.