Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/06/2008, 03:55
Avatar de minipunk
minipunk
 
Fecha de Ingreso: enero-2007
Ubicación: León-España
Mensajes: 47
Antigüedad: 17 años, 4 meses
Puntos: 1
Respuesta: Necesito Ayuda De Un Programador Web Para Crear Un Formulario Para Mi Pagi

Yo te pongo el codigo, pero para que funcione tu servidor tiene que tener instalado el CGI/BIN/MAILER , admitir PHP o similar. Vamos que solo un hosting vacio no funcionaría, pero si tu servidor es bueno así te bastaria:

Cita:
<form enctype="multipart/form-data" method="post" action="/cgi-bin/mailer">
<table border="0">
<tr>
<td><b>Nombre</b></td>
<td><input type="text" name="NAME" maxlength="35" size="37" value=""></td>
</tr>
<tr>
<td><b>Apellido</b></td>
<td><input type="text" name="NAME2" maxlength="35" size="37" value=""></td>
</tr>
<tr>
<td><b>Edad</b></td>
<td><input type="text" name="AGE" maxlength="5" size="7" value=""></td>
</tr>
<tr>
<td><b>País y Ciudad</b></td>
<td><input type="text" name="CITY" maxlength="35" size="37" value=""></td>
</tr>
<tr>
<td><b>Barrio y Dirección</b></td>
<td><input type="text" name="ADRESS" maxlength="35" size="37" value=""></td>
</tr>
<tr>
<td><b>Teléfono o Celular</b></td>
<td><input type="text" name="CELULAR" maxlength="35" size="37" value=""></td>
</tr>
<tr>
<td><b>Correo electrónico</b></td>
<td><input type="text" name="FROM" maxlength="35" size="37" value=""></td>
</tr>
<tr>
<td><b>Seleccione uno</b></td>
<td><select name="site" size="2">
<option value="">
<option>Consultas</option>
<option>Pedir presupuesto</option>
<option>Encargar mi sitio</option>
</select><td>
</tr>
<tr>
<td align="center" colspan="2"><input type="submit" value="Enviar">&nbsp;<input type="reset" value="Borrar"></td>
</tr>
</table>
<input type="hidden" name="TO" value="[email protected]">
<input type="hidden" name="SUBJECT" value="formulario de contacto de mi web">
<input type="hidden" name="GOTOURL" value="http://www.pagina que quieras que vaya el visitante.html">
</form>
Si quieres que le de error si no pone alguno ya seria con javascript.
Espero que te sirva.