Se ha eliminado el cine correctamente en la base de datos.
";
}
} else {
$this->reply = "
ERROR
Ha habido un error en la operacion. Revisa los datos introducidos
";
}
return $this->reply;
}
//Process form:
public function processesForm($_id, $_name, $_direction, $_phone, $_option) {
$this->correct = true;
$this->option = $_option;
$id= $this->test_input($_id);
$name=$this->test_input($_name);
$direction=$this->test_input($_direction);
$phone=$this->test_input($_phone);
//Habria que validar todo para que encaje en la base de datos
$bd = new Cinema_DAO('complucine');
if($bd){
if($this->option == "new"){
//Primero comprobar si los campos no son vacios y la duracion es mayor que 0
if(!empty($name)&&!empty($direction)&&!empty($phone)){
// comprobar si existe una pelicula con el mismo nombre y direccion
$exist = $bd->GetCinema($name,$direction);
if( mysqli_num_rows($exist) != 0){
$this->correct =false;
}
else{
$bd->createCinema(null, $name, $direction, $phone);
}
$exist->free();
}
else{
$this->correct =false;
}
} else if ($this->option == "del"){
//Primero comprobar si existe una pelicula con el mismo id
$exist = $bd-> CinemaData($id);
if( mysqli_num_rows($exist) == 1){
$bd->deleteCinema($id);
}
else{
$this->correct =false;
}
} else if ($this->option == "edit"){
//Primero comprobar si los campos no son vacios y la duracion es mayor que 0
if(!empty($name)&&!empty($direction)&&!empty($phone)){
//comprobar si existe una pelicula con el mismo id
$exist = $bd-> CinemaData($id);
if( mysqli_num_rows($exist) == 1){
$bd->editCinema($id,$name,$direction,$phone);
}
else{
$this->correct =false;
}
$exist->free();
}
else{
$this->correct =false;
}
}
else {$this->correct = false;}
}
}
protected function test_input($input){
return htmlspecialchars(trim(strip_tags($input)));
}
}
?>