Example #1
0
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Tarea 21</title>
</head>

<body>
	<?php 
//comprueba que el formulario contenga datos en todos los campos
//e inserta la información en la base de datos. Seguidamente fuerza el flujo
//hacia form.php
if (isset($_POST["lugar"]) && isset($_POST["poblacion"]) && isset($_POST["nota"])) {
    $db = new gestordb("localhost", "root", "admin", "Daw");
    $db->connect_to_db();
    echo $db->getInfo();
    $db->addRow($_POST["lugar"], $_POST["poblacion"], $_POST["nota"]);
}
?>

	<div id="form" style="font-family:Verdana, Geneva, sans-serif; text-transform:capitalize">
    	<form method="post" action="index.php">
        	Lugar <input type="text" name="lugar"/><br/>
			Población <input type="text" name="poblacion"/><br/>
            Nota <input type="number" name=		"nota" /><br/><br/>
            <input type="submit" name="Enviar"/>                    
        </form>
    </div>
</body>
Example #2
0
<?php

require_once "gestordb.php";
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>

	
<body>
<?php 
$gestor = new gestordb("localhost", "root", "admin", "Daw");
$gestor->connect_to_db();
$gestor->addRow("Puerta del Sol", "Madrid", "9");
echo $gestor->getInfo();
echo "</br>";
echo $gestor->getLugares();
?>
</body>
</html>
Example #3
0
<?php

require "gestordb.php";
//conectar a la base de datos si hay datos en el formulario
$conexion = new gestordb("root", "admin", "Daw");
$conexion->connect_to_db();
//comprobar que user y password tengan valores
if (isset($_POST["user"]) && isset($_POST["password"])) {
    //validar los datos en la base de datos
    if ($conexion->autenticar($_POST["user"], $_POST["password"])) {
        session_start();
        //inicia la sesion en el navegador
        $_SESSION["autentificado"] = "si";
        //genera un indice-valor dentro del array de la sesion
        header("Location:aplication.php");
        //crea un head en el aplication.php
    } else {
        header("Location:index.php?errorusuario=si");
    }
}
Example #4
0
     $str = $str . "<div>";
     $str = $str . "<h3>Puede mandar un email a tarantantaran@gmail.com</h3>";
     $str = $str . "</div>";
     $pagina->setCuerpoContenido("Contacto", $str);
     break;
 case 3:
     $str = "";
     $str = $str . "<div>";
     $str = $str . "<h3 class=\"mensaje\">Facebook. The original!!!</h3>";
     $str = $str . "<img class=\"foto_sencilla\" src=\"images/face.jpg\">";
     $str = $str . "</div>";
     $pagina->setCuerpoContenido("Contacto", $str);
     break;
 case 4:
     //conecta a la base de datos a traves de la clase gestor (gestor.php)
     $gestor = new gestordb("localhost", "root", "admin", "Daw");
     $gestor->connect_to_db();
     //construir una tabla con el contenido de la base de datos
     $str = "";
     $str = $str . "</br><section class='cuerpo'>";
     $str = $str . "<div><h3>Tabla de resultados</h3></div>";
     $str = $str . "<div>";
     $str = $str . $gestor->getLugares();
     $str = $str . "</br></br></div></section>";
     $pagina->setCuerpoContenido("Base de Datos", $str);
     break;
 default:
     $str = "";
     $str = $str . "<section class='cuerpo'><div>";
     $str = $str . "<h3 class=\"mensaje\">Home</h3>";
     $str = $str . "</div><section>";