martes, 27 de septiembre de 2016
jueves, 22 de septiembre de 2016
pagina principal
<html>
<head>
<title>pagina heber</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/estilos.css">
</head>
<body>
<table align="center" border="0" width="900" bgcolor="gray" class="table1">
<tr>
<td>
<div id="menu">
<a href="inicio.html" target="marco"><img src="imagenes/inicio.png"></a>
<a href="vision.html" target="marco"><img src="imagenes/vision.png"></a>
<a href="vision.html" target="marco"><img src="imagenes/mision.png"></a>
</div>
</td>
</tr>
<tr>
<td>
<iframe name=marco width=100%
height=500 frameborder=0 src="mision.html">
</iframe>
</td>
</tr>
<tr>
<td>
pie de página: Autor Heber Rodriguez
</td>
</tr>
</table>
</body>
</html>
<head>
<title>pagina heber</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/estilos.css">
</head>
<body>
<table align="center" border="0" width="900" bgcolor="gray" class="table1">
<tr>
<td>
<div id="menu">
<a href="inicio.html" target="marco"><img src="imagenes/inicio.png"></a>
<a href="vision.html" target="marco"><img src="imagenes/vision.png"></a>
<a href="vision.html" target="marco"><img src="imagenes/mision.png"></a>
</div>
</td>
</tr>
<tr>
<td>
<iframe name=marco width=100%
height=500 frameborder=0 src="mision.html">
</iframe>
</td>
</tr>
<tr>
<td>
pie de página: Autor Heber Rodriguez
</td>
</tr>
</table>
</body>
</html>
martes, 20 de septiembre de 2016
MOSTRAR Y GUARDAR
<!DOCTYPE html>
<html>
<head>
<title>
</title>
<meta charset="utf-8">
</head>
<body>
<form action="guardar.php" method=POST><!aca es donde se hace la acción de guardar por lo tando debe realizar un archivo de guarda.php->
<table border=2 width=400 align=center>
<tr>
<td>nombre</td>
<td> <input type="text" required name="nombre" size=44px placeholder="ingrese el nombre"> </td>
</tr>
<tr>
<td>grado</td>
<td> <input type="text" required name="grado" placeholder="ingrese el grado academico" > </td>
</tr>
<tr>
<td>edad</td>
<td> <input type="text" required name="edad" placeholder="ingrese la edad de la persona"></td>
</tr>
<tr>
<td colspan="2" align="center">
<a href="mostrar.php">MOSTRAR DATOS</a></td>
</tr>
<tr>
<td colspan=2 align="center">
<button type="submit" >GUARDAR</button>
</td>
</tr>
</table>
</form>
</body>
</html>
_________________________________________________________________________________
ARCHIVO GUARDAR.PHP
<?php
include("conexion.php");
$nombre= $_POST['nombre'];
$grado= $_POST['grado'];
$edad= $_POST['edad'];
$query="INSERT INTO alumnos(nombre,grado,edad)VALUES
('$nombre','$grado','$edad')";
$resultado= $conexion->query($query);
if($resultado){
echo "<script>alert('los datos fueron enviados
exitosamente');
location.href='index.html'</script>";
}
else
{
echo"error al insertar dato";
}
?>
_____________________________________________________________________________
ARCHIVO MOSTRAR.PHP
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> tabla</title>
</head>
<body>
<center>
<center> <table border="1">
<thead>
<tr>
<th colspan="1"> <a href="index.html">nuevo</a></th><!--el href="index.html es para volver a
cargar el formulario principal por si deseo ingresar otro dato-->
<th colspan="5"> lista de alumnos</th>
</tr>
</thead>
<tbody><!--encabezado de una tabla-->
<tr>
<td> id </td> <!--variables que use en la base de datos-->
<td> nombre</td><!--variables que use en la base de datos-->
<td> grado </td><!--variables que use en la base de datos-->
<td> edad</td><!--variables que use en la base de datos-->
</tr>
<?php
include("conexion.php");
$query="SELECT * FROM alumnos ORDER BY 1";
$resultado=$conexion->query($query);
while($row=$resultado->fetch_assoc()){ //ciclo para llamar los datos//
?>
<tr>
<td><?php echo $row['id'];?></td> <!--son las variables que realice en la base de datos-->
<td><?php echo $row['nombre'];?></td><!--son las variables que realice en la base de datos-->
<td><?php echo $row['grado'];?></td><!--son las variables que realice en la base de datos-->
<td><?php echo $row['edad'];?></td><!--son las variables que realice en la base de datos-->
</tr>
<?php
}
?>
</tbody>
</table>
</center>
</body>
</html>
_______________________________________________________
archivo de conexion.php
<?
$conexion=new mysqli("localhost","root","123456","alumnoss");
?>
___________________________________________________________
CONSULTAR PHP
<!DOCTYPE html>
<html>
<head>
<title>guardar</title>
</head>
<body>
<center>
<?php
include("conexion.php");
$producto=$_POST['producto'];
$query="SELECT *FROM inventarios WHERE producto='$producto'";
$resultado=$conexion->query($query);
$row=$resultado->fetch_assoc();
?>
<CENTER><table border=2 width="200" align=center>
<tr>
<td>id</td>
<td> <input type="text" name="id" value="<?php echo $row['id'];?>"/> </td>
</tr>
<tr>
<td>producto</td>
<td> <input type="text" name="producto" value="<?php echo $row['producto'];?>"/> </td>
</tr>
<tr>
<td>categoria</td>
<td> <input type="text" name="categoria" value="<?php echo $row['categoria'];?>"/></td>
</tr>
<tr>
<td>fecha</td>
<td> <input type="date" name="fecha" value="<?php echo $row['fecha'];?>"/></td>
</tr>
<tr>
<td>cantidad</td>
<td> <input type="text" name="cantidad" value="<?php echo $row['cantidad'];?>"/></td>
</tr>
<tr>
<td colspan=2 align="center">
<a href="index.html">INICIO</a>
</td>
</tr>
</table>
</CENTER>
</BODY>
</HTML>
<html>
<head>
<title>
</title>
<meta charset="utf-8">
</head>
<body>
<form action="guardar.php" method=POST><!aca es donde se hace la acción de guardar por lo tando debe realizar un archivo de guarda.php->
<table border=2 width=400 align=center>
<tr>
<td>nombre</td>
<td> <input type="text" required name="nombre" size=44px placeholder="ingrese el nombre"> </td>
</tr>
<tr>
<td>grado</td>
<td> <input type="text" required name="grado" placeholder="ingrese el grado academico" > </td>
</tr>
<tr>
<td>edad</td>
<td> <input type="text" required name="edad" placeholder="ingrese la edad de la persona"></td>
</tr>
<tr>
<td colspan="2" align="center">
<a href="mostrar.php">MOSTRAR DATOS</a></td>
</tr>
<tr>
<td colspan=2 align="center">
<button type="submit" >GUARDAR</button>
</td>
</tr>
</table>
</form>
</body>
</html>
_________________________________________________________________________________
ARCHIVO GUARDAR.PHP
<?php
include("conexion.php");
$nombre= $_POST['nombre'];
$grado= $_POST['grado'];
$edad= $_POST['edad'];
$query="INSERT INTO alumnos(nombre,grado,edad)VALUES
('$nombre','$grado','$edad')";
$resultado= $conexion->query($query);
if($resultado){
echo "<script>alert('los datos fueron enviados
exitosamente');
location.href='index.html'</script>";
}
else
{
echo"error al insertar dato";
}
?>
_____________________________________________________________________________
ARCHIVO MOSTRAR.PHP
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> tabla</title>
</head>
<body>
<center>
<center> <table border="1">
<thead>
<tr>
<th colspan="1"> <a href="index.html">nuevo</a></th><!--el href="index.html es para volver a
cargar el formulario principal por si deseo ingresar otro dato-->
<th colspan="5"> lista de alumnos</th>
</tr>
</thead>
<tbody><!--encabezado de una tabla-->
<tr>
<td> id </td> <!--variables que use en la base de datos-->
<td> nombre</td><!--variables que use en la base de datos-->
<td> grado </td><!--variables que use en la base de datos-->
<td> edad</td><!--variables que use en la base de datos-->
</tr>
<?php
include("conexion.php");
$query="SELECT * FROM alumnos ORDER BY 1";
$resultado=$conexion->query($query);
while($row=$resultado->fetch_assoc()){ //ciclo para llamar los datos//
?>
<tr>
<td><?php echo $row['id'];?></td> <!--son las variables que realice en la base de datos-->
<td><?php echo $row['nombre'];?></td><!--son las variables que realice en la base de datos-->
<td><?php echo $row['grado'];?></td><!--son las variables que realice en la base de datos-->
<td><?php echo $row['edad'];?></td><!--son las variables que realice en la base de datos-->
</tr>
<?php
}
?>
</tbody>
</table>
</center>
</body>
</html>
_______________________________________________________
archivo de conexion.php
<?
$conexion=new mysqli("localhost","root","123456","alumnoss");
?>
___________________________________________________________
CONSULTAR PHP
<!DOCTYPE html>
<html>
<head>
<title>guardar</title>
</head>
<body>
<center>
<?php
include("conexion.php");
$producto=$_POST['producto'];
$query="SELECT *FROM inventarios WHERE producto='$producto'";
$resultado=$conexion->query($query);
$row=$resultado->fetch_assoc();
?>
<CENTER><table border=2 width="200" align=center>
<tr>
<td>id</td>
<td> <input type="text" name="id" value="<?php echo $row['id'];?>"/> </td>
</tr>
<tr>
<td>producto</td>
<td> <input type="text" name="producto" value="<?php echo $row['producto'];?>"/> </td>
</tr>
<tr>
<td>categoria</td>
<td> <input type="text" name="categoria" value="<?php echo $row['categoria'];?>"/></td>
</tr>
<tr>
<td>fecha</td>
<td> <input type="date" name="fecha" value="<?php echo $row['fecha'];?>"/></td>
</tr>
<tr>
<td>cantidad</td>
<td> <input type="text" name="cantidad" value="<?php echo $row['cantidad'];?>"/></td>
</tr>
<tr>
<td colspan=2 align="center">
<a href="index.html">INICIO</a>
</td>
</tr>
</table>
</CENTER>
</BODY>
</HTML>
Suscribirse a:
Entradas (Atom)