"./?state=mc"); parent::__construct('formAddCinema',$op); } protected function generaCamposFormulario($datos,$errores=array()){ $htmlErroresGlobales = self::generaListaErroresGlobales($errores); $errorName = self::createMensajeError($errores,'namecinema','span',array('class'=>'error')); $errorDirection = self::createMensajeError($errores,'direction','span',array('class'=>'error')); $errrorPhone = self ::createMensajeError($errores,'phone',array('class'=>'error')); $html = '
'.$htmlErroresGlobales.' Añadir cine
'.$errorName.'
'.$errorDirection.'
'.$errrorPhone.'
'; return $html; } //Process form: public function procesaFormulario($datos) { $result =array(); $name = $this->test_input($datos['namecinema'])??null; if(empty($name)){ $result['namecinema']= "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.

"; $result = './?state=mc'; } $exist->free(); } return $result; } } ?>