Ver Mensaje Individual
  #10 (permalink)  
Antiguo 19/03/2008, 20:56
Avatar de leskolpykos
leskolpykos
 
Fecha de Ingreso: junio-2007
Ubicación: Caracas
Mensajes: 96
Antigüedad: 16 años, 10 meses
Puntos: 0
Re: formulario de contacto

almagropaco_ aqui te coloco un form que no utiliza mysql, simplemente te envía la información a un correo electrónico, quizá pueda ayudarte, espero q si.

te lo voy a dividir en dos mensajes

formulario.php

<form action="formmail.php" method="POST">
<input type="hidden" name="Formulario" value="Consulta">
<input type="hidden" name="recipient" value="[email protected]">
<input type="hidden" name="redirect"value="http://www.dominio.com/gracias.htm">
<input type="hidden" name="subject" value="Consulta">
<table width="100%" border="0" cellspacing="2" cellpadding="0" height="147">
<tr>
<td width="43%" height="25"><font size="2" color="#000099">Campo
1 </font></td>
<td width="57%" height="25">
<input type="text" name="campo1">
</td>
</tr>
<tr>
<td width="43%"><font size="2" color="#000099">Campo
2 </font></td>
<td width="57%">
<input type="text" name="campo2">
</td>
</tr>
<tr>
<td width="43%"><font size="2" color="#000099">Campo
3 </font></td>
<td width="57%">
<input type="text" name="campo3">
</td>
</tr>
<tr>
<td width="43%"><font size="2" color="#000099">Campo
4 </font></td>
<td width="57%">
<input type="text" name="campo4">
</td>
</tr>
<tr>
<td width="43%" height="15"><font size="2" color="#000099">Campo
5 </font></td>
<td width="57%" height="15">
<textarea name="campo5"></textarea>
</td>
</tr>
<tr>
<td width="43%">
<input type="submit" name="Submit" value="Enviar">
</td>
<td width="57%">
<input type="reset" name="Submit" value="Reset">
</td>
</tr>
</table>
</form>

Última edición por leskolpykos; 19/03/2008 a las 21:04