Código HTML:
<html> <head><title>Formulario de Inscripción de Usuario</title> <style type="text/css"> <!-- .Estilo1 { color: #FF0000; font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; } --> </style> </head> <?php $valveri=$_GET['var']; $codverifica=$_GET['var']; ?> <body bgcolor="#ffffff"> <table width="569" border="1" align="center"> <tr> <th colspan="2" scope="col">Inscripción de Usuario </th> </tr> <tr><td width="147"><p><strong>N Verificación:</strong></p> </td><td width="427"><input name="codverifica" type="text" disabled="true" value= <? $codverifica ?> ></td></tr> <tr><td><strong>Usuario:</strong></td> <td><p class="Estilo1"><input name="username" type="text" > <span class="Estilo2">*Ingrese nombre para poder identificarlo </span></p></td> </tr> <tr> <td><strong>Nombres:</strong></td><td><input name="real_name" type="text" size="50"></td></tr> <tr> <td><strong>Apellidos:</strong></td> <td><input name="real_after_name" type="text" size="50"></td> </tr> <tr> <td><strong>Password:</strong></td> <td><input name="userpass" type="text"></td> </tr> <tr> <td><strong>Email:</strong></td> <td><p> <input name="email" type="text" size="50"> </p> </td> </tr> <tr> <td colspan="2"><input type="submit" name="Submit" value="Enviar"> <input type="reset" name="Submit2" value="Borrar"> <input type="button" name="Submit3" value="Salir"></td> </tr> </table> </body> </html>