Jump to content
Fórum Script Brasil
  • 0

variavel via post


shelter

Question

Boa galera na boa?

Então preciso receber e enviar uma variavel via formulario ( post) estou fazendo assim segue:

form.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Documento sem título</title>

</head>

<body>

<?php

$teste="melancia";

?>

<form action="recebe.php" method="post">

<input name="teste" id="teste" type="hidden" value="<?php $teste ?>" />

<input name="nome" type="text" value="<?php $nome ?>" size="40" />

<input name="vai" type="submit" value="vai" />

</form>

</body>

</html>

recebe.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Documento sem título</title>

</head>

<body>

<?php

// este não recebo valor

echo "recebe - $teste </br>";

echo " recebe - $nome";

?>

</body>

</html>

Não consigo receber a variavel $teste

Agradeço desde já aos amigos.

Abraços

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
Boa galera na boa?

Então preciso receber e enviar uma variavel via formulario ( post) estou fazendo assim segue:

form.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Documento sem título</title>

</head>

<body>

<?php

$teste="melancia";

?>

<form action="recebe.php" method="post">

<input name="teste" id="teste" type="hidden" value="<?php $teste ?>" />

<input name="nome" type="text" value="<?php $nome ?>" size="40" />

<input name="vai" type="submit" value="vai" />

</form>

</body>

</html>

recebe.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Documento sem título</title>

</head>

<body>

<?php

// este não recebo valor

echo "recebe - $teste </br>";

echo " recebe - $nome";

?>

</body>

</html>

Não consigo receber a variavel $teste

Agradeço desde já aos amigos.

Abraços

Amigo...

Tenta isso, Se não funcionar vou parar de trabalhar rsrs (Brincadeira, é por que estou tomando coca.)

Então é o seguinte Grande shelter

Tenta colocar apenas isso na página recebe.php:

$teste = $_POST['teste'];

$nome = $_POST['nome'];

echo "recebe: $teste </br>";

echo " recebe: $nome";

Se Der certo avisa aqui a gente, Valeu?

Apenas uma observação: Na Página form.php você não precisa colocar <?php $variavel ?> No campo value. Até por que a variável não está aparecendo. Pra aparecer você precisa colocar um <?php echo $variavel; ?>... No campo value seria interessante você colocar algo do tipo: "Insira o nome" />

Espero ter ajudado.

Falou amigo: Abrass

Edited by Salumão Barbosa da Costa
Link to comment
Share on other sites

  • 0

Agora ta funcionando testa ai, já testei aqui.

form.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Documento sem título</title>

</head>

<body>

<?php

$teste="melancia";

?>

<form action="recebe.php" method="post">

<input name="teste" id="teste" type="hidden" value="<?php echo "$teste" ?>" />

<input name="nome" type="text" value="" size="40" />

<input name="vai" type="submit" value="vai" />

</form>

</body>

</html>

recebe.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Documento sem título</title>

</head>

<body>

<?php

$teste = $_POST['teste'];

$nome = $_POST['nome'];

echo "Agora você recebe Teste: $teste <br />\n Nome: $nome";

?>

</body>

</html>

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
      652k
×
×
  • Create New...