HOlA amigos, tengo una gran duda sobre php, la mision es crear un formulario (muy pequeño) el cual ingrese dos datos a una base....NOMBRE DE USUARIO y CONTRASEÑA......(es como un registro de e-mail...........pero muy basico).
La cosa es que no se me ocurre como hacerlo, solo tengo mi formulario
Código HTML:
<form name="form1" method="post" action="">
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td colspan="2"><span class="titulo_div">REGISTRO DE CUENTA NUEVA</span></td>
</tr>
<tr>
<td width="19%" class="Estilo1">Usuario:</td>
<td width="81%"><input type="text" name="new_usuario" /></td>
</tr>
<tr>
<td class="Estilo1">Pass:</td>
<td><input type="text" name="new_clave" /></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Registrame!" name="entrar"
style="BORDER: rgb(128,128,128) 1px dashed; FONT-SIZE: 8pt; FONT-FAMILY: Verdana;
BACKGROUND-COLOR: rgb(213,213,213)"/></td>
</tr>
</table>
</form>