Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/10/2008, 14:23
Avatar de pablosky13
pablosky13
 
Fecha de Ingreso: septiembre-2008
Mensajes: 42
Antigüedad: 16 años, 5 meses
Puntos: 0
Registro de nuevo usuario y clave

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>&nbsp;</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>