BASE DE DATOS
Octubre -11 - 2017
EJEMPLO EJERCICIO PRACTICA
<!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>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div align=center> <h1>ASD </h1></div>
<form id="formulario" name="formulario" method="POST" action="conexion.php" target="_blank" >
Telefono: <input type= "number" name="tel" id="b" required/><br><br>
SoN: <select required name="sel">
<option></option>
<option>Si</option>
<option>No</option>
</select>
<br>
<input type="submit" value="Guardar" />
<br>
</form>
</body>
</html>
EJEMPLO EJERCICIO PRACTICA
<!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>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div align=center> <h1>ASD </h1></div>
<form id="formulario" name="formulario" method="POST" action="conexion.php" target="_blank" >
Telefono: <input type= "number" name="tel" id="b" required/><br><br>
SoN: <select required name="sel">
<option></option>
<option>Si</option>
<option>No</option>
</select>
<br>
<input type="submit" value="Guardar" />
<br>
</form>
</body>
</html>
Archivo de la conexión:
<?php
//-- variables para conectarse a la base de datos
$servidor = 'localhost';
$base_datos = 'nicolas';
$tabla = 'asd';
$usr_sistema = 'root';
$pass_sistema = 'alumnos';
//-- Conexion a la Base de datos segun variables declaradas
//$conexion=mysql_connect($servidor, $usr_sistema, $pass_sistema);
$conexion=mysqli_connect($servidor, $usr_sistema, $pass_sistema);
if (!$conexion){
header ("Location: index.php?mensaje=error_de_conexion.");
exit();
}
else{
//-- Captura de las variables del formulario.
$tel = $_REQUEST['tel'];
$select = $_REQUEST['sel'];
$fecha = date("Y-m-d");
//-- Consulta Sql para guardar el registro o datos digitados.
$sql = "INSERT INTO ".$base_datos.".".$tabla." (telefono,siono,fecha) "
."VALUES('$tel','$select', '$fecha' )";
//$sql = mysql_query($sql, $conexion);
$sql = mysqli_query($conexion, $sql);
//-- Se devuelve a la pagina que inicial.
header ("Location: index.php?mensaje=Registro_Incluido_con_Exito.");
exit();
}
?>
Crear la tabla desde phpmyadmin:
create database nombre;
use nombre;
CREATE TABLE `tabla` (
`id` int(111) NOT NULL auto_increment,
`telefono` varchar(100) NOT NULL,
`siono` varchar(100) NOT NULL,
`fecha` date(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
0 comentarios: