diff --git a/assets/php/includes/session.php b/assets/php/includes/session.php index a8daa7f..b5198ba 100644 --- a/assets/php/includes/session.php +++ b/assets/php/includes/session.php @@ -1,5 +1,5 @@ cinemaData($cinemas[$i]); $hallDAO = new HallDAO("complucine"); $hall = $hallDAO->HallData($halls[$i]); + $sessionDAO = new SessionDAO("complucine"); + $session = $sessionDAO->sessionData($sessions[$i]); + $filmDAO = new Film_DAO("complucine"); + $film = $filmDAO->FilmData($session->getIdfilm()); if($i%2 === 0){ if($i != 0) $purchasesHTML .= ' @@ -132,19 +138,25 @@ '; } $purchasesHTML .= '

Compara realizada el: '.$dates[$i].'


-

Cine: '.$cinema->getName().'

-

Dirección: '.$cinema->getDirection().'

-

Sala: '.$hall->getNumber().'

-

Sesión: '.$sessions[$i].'

-

Asiento(Fila): '.$rows[$i].'

-

Asiento(Columna): '.$columns[$i].'

'; +
+

Película: '.str_replace('_', ' ', strtoupper($film->getTittle())).'

+

Idioma: '.$film->getLanguage().'

+

Cine: '.$cinema->getName().'

+

Dirección: '.$cinema->getDirection().'

+
+
+

Sala: '.$hall->getNumber().'

+

Sesión: '.$sessions[$i].'

+

Asiento(Fila): '.$rows[$i].'

+

Asiento(Columna): '.$columns[$i].'

+
'; } } - return $reply = '
+ return $reply = '

Historial de compras


'.$purchasesHTML.' -
'."\n"; +
'; } //User payment details