Código PHP:
Ver original
<html> <head><title></title></head> <body > <p align=right> <form name="form1" method="post"> <table><td> <table> <p align="left"><img src="conecsf.JPG" length=50% width=50%></p> </table> <td> <table> <tr><td></p> <tr><td>Usuario:<td><td><INPUT type="text" name="nombre" id="nombre" size="17"> Contraseña <INPUT type="password" name="pass" id="pass" size="17"><tr></p> </table> </table> </form> <form name="form2" method="post"> <?php $nombre=$_POST['nombre']; $mail=$_POST['mail']; $pass=$_POST['pass']; $sexo=$_POST['sexo']; ?> <input type="Button" value="Enviar"> </p> <TABLE background="fondo1.bmp" FONT COLOR=WHITE BORDER=0 WIDTH=100%> <TR><TD ROWSPAN=1><P ALIGN=Left>Eslogan</P></TD><TD COLSPAN=1> <TR><TD ROWSPAN=1><img src="imagen.jpg"><P ALIGN=Left> </P></TD><TD COLSPAN=1> <TABLE> <TR> <TD><LABEL for= "nombre">Nombre:</LABEL> <TD><INPUT type="text" name="nombre" id="nombre" size="40" maxlength="100"> <TR> <TD><LABEL for= "mail">E-mail:</LABEL> <TD><INPUT type="text" name="mail" id="mail" size="40" maxlength="100"> <TR> <TD><LABEL for= "pass">Contraseña:</LABEL> <TD><INPUT type="password" name="pass" id="pass" size="40" maxlength="100"> <TR> <TD><LABEL for= "sex">Sexo:</LABEL> <TD> <SELECT name="sex"> <OPTION>Seleccione el sexo:</OPTION> <OPTION name="sex">Masculino</OPTION> <OPTION name="sex">Femenino</OPTION> </SELECT> <?php mysql_select_bd("cm", $conex); mysql_query("INSERT INTO cte(nombre, pass, mail, sexo, foto, estado, ciudad) VALUES ('$nombre', '$pass', '$mail', '$sexo')",$conex); ?> <TR> </table> <input type="submit" value="Registrarse"> </TD></TR> </TABLE> </form> </body> </html>