Don´t received emails

joseramon

New member
Joined
Dec 8, 2009
Messages
2
Location
Spain
Hi from Spain, I don´t know what to do from the begin to received emails.I´ve a form but i don´t know what code i must use...I read a lot about PHP and...ufff it´s enoght for me really...please help!!!
Here its my first form html code:

<Form method="POST" action="http://www.stise.es/cgi-bin/post.cgi" ONSUBMIT="return checkRequired(this)">
<input type="hidden" name="recipient" value="[email protected]">
<input type="hidden" name="subject" value="Información">
<input type="hidden" name="required" value="">
<p>
<center><table border="0" cellpadding="10" cellspacing="0">
<tr><td><span class="Estilo7">Nombre:</span></td>
<td><input type="text" name="Nombre:"></td></tr>
<tr><td><span class="Estilo7">Teléfono:</span></td>
<td><input type="text" name="Teléfono:"></td></tr>
<tr><td><span class="Estilo7">Email:</span></td>
<td><input type="text" name="Email:"></td></tr>
<tr><td><span class="Estilo7">Comentario:</span></td>
<td><textarea name="Comentario:" rows="5" cols="28"></textarea></td></tr>
</table>
</center></p>

<p><center><table><tr><td><input type="submit" name="Enviar" value="Enviar"></td><td><input type="reset" name="Borrar" value="Borrar"></td></tr></table></center></p></form>
 
The form that you're using appears to be a cgi form, not php. While you can use a cgi form inside PHP, you might be better off using a php implementation.

This forum is for community support of the DirectAdmin control panel; you'd be much better off finding a forum for programming websites.

Jeff
 
Back
Top