
16/07/2008, 10:56
|
| | Fecha de Ingreso: julio-2008
Mensajes: 11
Antigüedad: 16 años, 8 meses Puntos: 0 | |
Problema con conexion a mysql BUENOS DIAS ESTOY EN EL PROCESO DE APRENDER PHP Y ESTOY REALIZANDO UN FORMULARIO SENCILLO DE INGRESO DE UN USUARIO A LA BASE DE DATOS, ESTOY REALIZANDO EL PROCESO Y NO ME SACA NINGUN ERROR PERO CUANDO VOY A REVISAR LA BASE DE DATOS NO ME SALE NADA. LES AGRADECERIA QUE ME COLABORARAN. MUCHAS GRACIAS.
ESTE ES EL ARCHIVO HTML
<form id="form1" name="form1" method="post" action="test4.php">
<p align="center" class="Estilo1"><strong>INGRESO AL SISTEMA </strong></p>
<p align="center" class="Estilo1"> </p>
<TABLE BORDER=0>
<TR>
<TD><span class="Estilo1"><strong>USUARIO</strong> *: </span></TD>
<TD>
<input name="loginusuario" type="text" id="loginusuario" />
</TD>
</TR>
<TR>
<TD><span class="Estilo1"><strong>CONTRASEÑA</strong> *: </span></TD>
<TD>
<input name="password" type="text" id="password" />
</TD>
</TR>
</TABLE>
<p>
<label>
<input type="submit" name="Submit" value="Enviar" />
</label>
</p>
<p> </p>
</form>
<p> </p>
Y ESTE ES EL ARCHIVO test4.php
<?php
$id = $_POST['loginusuario'];
$password = $_POST['password'];
$conexion = mysql_connect('localhost', 'root','') or die ("No se puede conectar a la base datos");
mysql_select_db("alcaldia", $conexion);
$insertar = ("INSERT INTO usuario(id, password)VALUES($id, '$password')");
//echo "LOS DATOS SE GUARDARON";
mysql_query($insertar);
?> |