Add files via upload

This commit is contained in:
Fernando Méndez 2021-06-02 20:59:02 +02:00 committed by GitHub
parent 987fc1a641
commit 616bf85934
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ class FormPurchase extends Form {
for($i = 0; $i <= $rows; $i++){
for($j = 0; $j <= $cols; $j++){
$seat = $i.$j;
if(isset($_POST["checkbox".$seat])){ $this->seat = $seat; }
if(isset($_POST["checkbox".$seat])){ $this->seat = "(Fila) ".$i." - (Columna) ".$j; }
}
}

View File

@ -78,7 +78,7 @@ class FormSelectCinemaSession extends Form {
$cinemasListHTML .= '</select>
</section>';
} else {
$cinemasListHTML = '<form><select name="cinemas"><option value="" selected>No hay cines disponibles para esta película.</option></select></form>';
$cinemasListHTML = '<select name="cinemas"><option value="" selected>No hay cines disponibles para esta película.</option></select>';
}
$fiml_id = $film->getId();