
02/07/2003, 09:51
|
 | | | Fecha de Ingreso: noviembre-2002 Ubicación: San Bernardo - Chile
Mensajes: 410
Antigüedad: 22 años, 5 meses Puntos: 0 | |
si recibir es checkbox:
<input type="checkbox" name="recibir" value="1">
si es radiobutton
<input type="radio" name="recibir" value="1">
al comprobar las variables
if recibir="" then correcto=False end if
if (recibir=1) then
if email="" then correcto=False end if
end if |