Código:
<?php if(!isset($_POST["enviar"])) { ?> <HTML> <HEAD> <link rel="stylesheet" type="text/css" href="work/CSS/FormsCSS.css"> </HEAD> <BODY> <H3>Datos registro</H3> <form action="registro.php" method="post"> <label for="nombre"> Nombre </label> <input type="text" name="nombre" size="15"><BR> <label for="apellidos">Apellidos </label> <input type="text" name="apellidos" size="25"><BR> <label for="email"> Mail </label> <input type="text" name="mail" size="20"><BR> <label for="confmail"> Confirma Mail </label> <input type="text" name="confmail" size="20"><BR> <label for="pass"> Password </label> <input type="password" name="pass" size="10"><BR> <label for="confpass">Confirma Password </label> <input type="password" name="confpass" size="10"><BR> <input type="submit" name="enviar" value="Registrarse"> </form> </BODY> </HTML> <?php } else {} ?>