Glebson 0 Denunciar post Postado Novembro 18, 2003 Olá gente, estou mais uma vez aqui para pedir informação sobre formulario, não sei se estou fazendo corretamente, mas gostaria de saber se o meu codigo, tem algo de errado que eu não consigo enxergar..o htm:obs: coloquei o pedaço que acho está errado :<form action="www.academiaam.net/email.php" method="post" name="form" id="form"><br><input type="hidden" name="recipient" value="glebsonsantos@hotmail.com"><input type="hidden" name="subject" value="Contactos"><input type="hidden" name="redirect" value="http://www.academiaam.net/obrigado.htm"> <table width="88%" height="266" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="27%"><font color="#990000"><strong>Nome</strong></font></td> <td width="73%"><input name="nome" type="text" id="nome" size="42" maxlength="42"></td> </tr> <tr> <td><font color="#990000"><strong>Telemóvel</strong></font></td> <td><input name="telemovel" type="text" id="telemovel" size="10" maxlength="10"></td> </tr> <tr> <td><font color="#990000"><strong>E-mail</strong></font></td> <td><input name="email" type="text" id="email" size="42" maxlength="42"></td> </tr> <tr> <td><font color="#990000"><strong>Sobre</strong></font></td> <td><select name="sobre" size="1" id="sobre"> <option>Diretoria</option> <option>Administração</option> <option>Pedagógico</option> <option>Alunos</option> <option>Cursos</option> <option>Outros</option> </select></td>e agora o arquivo php :<?php$nome = $_POST["nome"]; $telemovel = $_POST["telemovel"];$email = $_POST["email"];$sobre = $_POST["sobre"]; $assunto = $_POST["assunto"]; mail("glebsonsantos@hotmail.com","<b>Nome : $nome</b><br><br>", "<b>Telemóvel : $telemovel</b><br><br>", "<b>E-mail : $email</b><br><br>", "sobre : $sobre</b><br><br>", "assunto : $assunto</b><br><br>","\nContent-type: text/html\n"); ?>muito obrigado.atenciosamente,Glebson Santos Compartilhar este post Link para o post Compartilhar em outros sites
Douglas 6 Denunciar post Postado Novembro 18, 2003 Pode ser algum erro, no script.Tenta no forum de PHP. Compartilhar este post Link para o post Compartilhar em outros sites
alicacwb 0 Denunciar post Postado Novembro 20, 2003 É impressão minha, ou você nao fechou a tag FORM ??? <form action="www.academiaam.net/email.php" method="post" name="form" id="form"><br> <input type="hidden" name="recipient" value="glebsonsantos@hotmail.com"> <input type="hidden" name="subject" value="Contactos"> <input type="hidden" name="redirect" value="http://www.academiaam.net/obrigado.htm"> <table width="88%" height="266" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="27%"><font color="#990000"><strong>Nome</strong></font></td> <td width="73%"><input name="nome" type="text" id="nome" size="42" maxlength="42"></td> </tr> <tr> <td><font color="#990000"><strong>Telemóvel</strong></font></td> <td><input name="telemovel" type="text" id="telemovel" size="10" maxlength="10"></td> </tr> <tr> <td><font color="#990000"><strong>E-mail</strong></font></td> <td><input name="email" type="text" id="email" size="42" maxlength="42"></td> </tr> <tr> <td><font color="#990000"><strong>Sobre</strong></font></td> <td><select name="sobre" size="1" id="sobre"> <option>Diretoria</option> <option>Administração</option> <option>Pedagógico</option> <option>Alunos</option> <option>Cursos</option> <option>Outros</option> </select></td></tr></table></form> Alica CWB Compartilhar este post Link para o post Compartilhar em outros sites