Ver Mensaje Individual
  #5 (permalink)  
Antiguo 05/02/2004, 22:43
delyryus
 
Fecha de Ingreso: enero-2004
Ubicación: Tirando del cable del modem
Mensajes: 362
Antigüedad: 20 años, 11 meses
Puntos: 0
<?
include( "link.php" );
if( isset( $HTTP_POST_VARS['name'] ) )
{
$sql="INSERT INTO agenda VALUES( $name,$email,$tel )";
if( mysql_query( $sql,$link ) )
{
print "Datos Agregados.";
}
else
{
print "Error al Agregar Datos.";
}
}
?>
<HTML>
<HEAD>
<TITLE>Agregar Usuario</TITLE>
<STYLE type="text/css">
.text
{
border-width: 1px;
border-color: #000000;
border-style: solid;
background-color: #c0c0c0;
font-family: Lucida Console;
font-size: 8pt;
color: #666666;
text-align: right;
}
.boton
{
border-width: 1px;
border-color: #939393;
border-style: solid;
background-color: #FFFFFF;
font-family: Lucida Console;
font-size: 9pt;
color: #666666;
text-align: center;
}
.link
{
font-family: Comic Sans;
font-size: 12pt;
color: #FF0000;
text-decoration: none;
}
.link:hover
{
font-family: Lucidad Sans;
font-size: 12pt;
color: #7A9FA2;
text-decoration: underline;
font-weight: bold;
}
</STYLE>
</HEAD>
<BODY>
<CENTER>
<FORM method='post' action='test.php'>
<br><br><br>
nombre: <INPUT type='text' name='nam0' class='text'><br><br>
<INPUT type='submit' value='Agregar' class='boton'>
</FORM>
<br><br>
</CENTER>
</BODY>
</HTML>

el form se procesa solo en la misma pagina


[^La ignorancia me corre, pero yo corro mas rapido^]