<?php include "php/classVideo.php"; $video = new classVideo(); session_start(); $lista = $_POST["oculta"]; $pagoTotal = $_POST["precioTotal"]; if ($_POST["btnAlquilar"] == "Alquilar" && count($lista) > 0) { $recogida = $_POST["txtFechaRecogida"]; $devolucion = $_POST["txtFechaDevolucion"]; if ($video->insertaAlquiler($recogida, $devolucion, $pagoTotal, $_SESSION["idSocio"], $lista) != -1) { ?> <script type="text/javascript"> alert("Alquiler realizado"); </script> <?php } else { ?> <script type="text/javascript"> alert("La fecha de devolucion es incorrecta"); </script> <?php } } if ($_POST["CrearPelicula"] == "CrearPelicula") { $nombreNueva = $_POST["txtNuevoNombre"]; $directorNueva = $_POST["txtNuevoDirector"]; $fechaNueva = $_POST["txtNuevaFecha"]; $precioNueva = $_POST["txtNuevoPrecio"]; if ($video->insertaPelicula($nombreNueva, $directorNueva, $fechaNueva, $precioNueva, $_SESSION["idVideoclub"]) != -1) { ?>
<?php $videoHeader = new classVideo(); session_start(); ?> <html> <head> <title>Selección de videoclub</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap --> <link href="bootstrap-3.2.0-dist/css/bootstrap.min.css" rel="stylesheet"> <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet"> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> <nav class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header" style="margin-top:14px;margin-bottom:5px;"> <font size=6>Videoclub</font>  </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-left" style="margin-top:4px;"> <li class="active"><a href="index.php">Inicio</a></li> <li><a href="alta.php">Alta</a></li> <li class="active"><a href="alquiler.php">Alquiler</a></li> <li><a href="consultaUsuario.php">Consulta</a></li> </ul> <ul class="nav navbar-nav navbar-right" style="margin-top:4px;"> <?php
<?php include "php/classVideo.php"; $video = new classVideo(); session_start(); $idReporte = 0; if ($_POST["btnGenerar"] == "Generar") { // generamos el reporte a la fecha $idSocio = $_POST["selSocio"]; $fechaActual = $_POST["txtMes"]; $idReporte = $video->generaReporteMes($idSocio, $fechaActual); $reporte = $video->muestraReportes($idSocio); } include "header.php"; // mostramos la alerta if ($idReporte == -2 && $_POST["btnGenerar"] == "Generar") { ?> <script type="text/javascript"> alert("No existen datos para generar el reporte para el mes numero <?php echo $fechaActual; ?> . "); </script> <?php } if ($idReporte == -1 && $_POST["btnGenerar"] == "Generar") { ?> <script type="text/javascript"> alert("Ya se ha generado el reporte para el mes numero <?php echo $fechaActual; ?>
<?php include "php/classVideo.php"; $video = new classVideo(); session_start(); if ($_POST["btnEnviar"] == "Guardar") { $socio = $_POST["txtSocio"]; $edad = $_POST["txtEdad"]; $idSocioInsertado = $video->insertaSocio($socio, $edad, $idVideoclub, 0, "", ""); $_SESSION["idSocio"] = $idSocioInsertado; header("location: alquiler.php"); } if ($_POST["btnSeleccionar"] == "Seleccionar") { $_SESSION["idSocio"] = $_POST["selSocio"]; header("location: alquiler.php"); } if ($_POST["CrearVideoclub"] == "CrearVideoclub") { $txtNuevoGerente = $_POST["txtNuevoGerente"]; $txtNuevoaCiudad = $_POST["txtNuevoaCiudad"]; $txtNuevaDireccion = $_POST["txtNuevaDireccion"]; $txtNuevoCP = $_POST["txtNuevoCP"]; $video->insertaVideoclub($txtNuevoGerente, $txtNuevoaCiudad, $txtNuevaDireccion, $txtNuevoCP); ?> <script type="text/javascript"> alert("Videoclub insertado"); </script> <?php } include "header.php"; ?> <form method="post" action="">
<?php include "php/classVideo.php"; $video = new classVideo(); session_start(); if ($_POST["btnSeleccionar"] == "Seleccionar") { $_SESSION["idVideoclub"] = $_POST["selVideoclub"]; header("location: alta.php"); } if ($_POST["CrearVideoclub"] == "CrearVideoclub") { $txtNuevoGerente = $_POST["txtNuevoGerente"]; $txtNuevoaCiudad = $_POST["txtNuevoaCiudad"]; $txtNuevaDireccion = $_POST["txtNuevaDireccion"]; $txtNuevoCP = $_POST["txtNuevoCP"]; $idVideo = $video->insertaVideoclub($txtNuevoGerente, $txtNuevoaCiudad, $txtNuevaDireccion, $txtNuevoCP); $_SESSION["idVideoclub"] = $idVideo; ?> <script type="text/javascript"> alert("Videoclub insertado"); </script> <?php } ?> <?php include "header.php"; ?> <h1>Para comenzar elíge un videoclub:</h1> <h4>Podrás alquilar películas del videoclub seleccionado.</h4> <div class="row-fluid">
<?php // funciones de prueba error_reporting(E_ALL); echo "Hola!"; include "classVideo.php"; $video = new classVideo(); /* $id=$video->insertaSocio("pato", 36, 1, "usr", "12345", "1"); echo "<br> socio insertado: ".$id; $id=$video->insertaPelicula("peli1", "director 1", "2014-09-15", "2.53", "2"); echo "<br> pelicula insertada: ".$id; $id=$video->insertaAlquiler("2014-09-16", "2014-09-24", "2.54", "1", "234"); echo "<br> alquiler insertada: ".$id; $id=$video->insertaVideoclub("gerente 1", "valencia", "Serpis #80", "44567"); echo "<br> videoclub intertado: ".$id; */ $id = $video->generaReporte(1, "2014-09-18"); echo "<br> reporte intertado: " . $id;