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
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; }
}
}