Jump to content
Fórum Script Brasil
  • 0

Funciona O Método Post ?


rschalch

Question

Estou iniciando estudos em php e intalei os seguintes programas no computador :

PHP 4.3.8

MySql 4.0.20

Apache 2.0.50

o problema é que faço um simples formulário com método de envio POST e o q recebo em resposta são linhas como essa :

"Notice: Undefined variable: nome in E:\Arquivos de programas\Apache Group\Apache2\htdocs\powerfx\send.php on line 2"

Há algo de diferente com o método POST nessa versão do PHP ? Ou o q estou fazendo de errado ?

Obrigado pessoal smile.gif

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

esta é a parte do form smile.gif

<form action="send.php" method="post" enctype="application/x-www-form-urlencoded" name="form1" onSubmit="MM_validateForm('nome','','R','telefone','','RisNum','email','','RisEmail','mensagem','','R');return document.MM_returnValue">

<table width="500" border="0" cellpadding="0" cellspacing="0" class="form">

<tr>

<td>Nome : </td>

<td><input name="nome" type="text" id="nome" maxlength="20"></td>

<td>&nbsp;</td>

</tr>

<tr>

<td>Empresa : </td>

<td><input name="empresa" type="text" id="empresa" maxlength="20"></td>

<td>&nbsp;</td>

</tr>

<tr>

<td>Telefone : </td>

<td><input name="tel" type="text" id="tel" maxlength="20"></td>

<td>&nbsp;</td>

</tr>

<tr>

<td>E-mail : </td>

<td><input name="email" type="text" id="email" maxlength="35"></td>

<td>&nbsp;</td>

</tr>

<tr>

<td valign="top"><p>Mensagem :</p>

</td>

<td><textarea name="mesg" cols="40" rows="3" id="mesg">

</textarea></td>

<td>

<input type="submit" name="Submit" value="Enviar" style="font-family: Verdana; font-size: 8pt"></td>

</tr>

</table>

</form>

e esta é o PHP

<?php

$msg="Nome do Usuário:$nome\n";

$msg .="Empresa:$empresa\n";

$msg .="Telefone:$tel\n";

$msg .="E-Mail:$email\n";

$msg .="Mensagem:$mesg\n";

$head = "Para: PowerFx\n";

mail("admin@powerfx.com.br" , "Contato do Site" , $msg , $head);

?>

essa é apenas pra voltar a questão para a primeira página , tava ficando esquecida

EDITANDO

Não post duas vezes seguidas

Edited by Guilherme014
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...