<?php require_once 'gestionBd.php'; $gestion = new GestionBd(); $equiposArray = $gestion->obtenerReg(); ?> <!DOCTYPE HTML> <html> <head> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" > <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" > <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" ></script> <meta http-equiv="Content-Type" content="text/html" /> <meta accept-charset="UTF-8"> <title>Prueba</title> </head> <body class="container"> <header> <div class=""><h1>Registros de la tabla equipos</h1></div> </header>
<?php require_once 'gestionBd.php'; require_once 'equipos.php'; $gestion = new GestionBd(); $equipo = new Equipo(); $sql = "create table equipos (\n equipos_id int(10) unsigned NOT NULL AUTO_INCREMENT,\n nombre varchar(50) NOT NULL,\n codigo varchar(50) NOT NULL,\n precio float(10,2) NOT NULL,\n fecha_fab date NOT NULL,\n fecha_in timestamp NOT NULL,\n garantia int(3) NOT NULL,\n PRIMARY KEY (equipos_id)\n );"; $gestion->borrarTabla("drop table equipos;"); $gestion->crearTabla($sql); /* * Llenar BD con 5000 o más registros random */ for ($i = 0; $i < 6000; $i++) { $equipo->setNombre(ramdomNombre()); $equipo->setCodigo(ramdomCodigo($equipo->getNombre())); $equipo->setPrecio(ramdomPrecio()); $equipo->setFecha_fab(ramdomFechaFab()); $equipo->setFecha_in(ramdomFechaIn()); $equipo->setGarantia(ramdomGarantia()); $gestion->insertarBd($equipo); echo " Ok"; } ?>
<?php require_once 'gestionBd.php'; $gestion = new GestionBd(); $estGen = $gestion->estGenerales(); $equipos_nombre = $gestion->articulosNombre(); $est = $gestion->estadisticas(); ?> <!DOCTYPE HTML> <html> <head> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" > <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" > <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" ></script> <meta http-equiv="Content-Type" content="text/html; ISO-8859-1" /> <title>Prueba</title> </head> <body class="container"> <header> <div class=""><h1>Estadisticas de la tabla equipos</h1></div>