Guest - douglas - Posted July 1, 2004 Report Share Posted July 1, 2004 Tenho um formulario que tem duas caixas de texto uma com nome usuario outra com nome senha, quando envio estas informações com botão submit elas não vão para a pagina php que tem variaveis com mesmo nome.//formulario<html><head><title>Aprendendo PHP 3</title></head><body><form method=post action="teste.php"><input type="text" name="usuario" value="" size=10><br><input type="text" name="senha" value="" size=10><br><input type="submit" name="sub" value="Enviar!"></form></body></html>//pagina php<?php echo $usuario; echo $senha; ?> Quote Link to comment Share on other sites More sharing options...
0 Sperto_Rox Posted July 1, 2004 Report Share Posted July 1, 2004 temta colocar aspas...echo "$usuario";echo "$senha";se não der faz assim assim ... $usuario = $_POST["usuario"];$senha = $_POST["senha"];echo "$usuario";echo "$senha"; Quote Link to comment Share on other sites More sharing options...
0 --Fabiano-- Posted July 1, 2004 Report Share Posted July 1, 2004 Tenta imprimir os dados assim:<?phpecho $_POST['usuario'];echo $_POST['senha']; ?> falows... Quote Link to comment Share on other sites More sharing options...
0 Sperto_Rox Posted July 1, 2004 Report Share Posted July 1, 2004 ops é verdade .. formulario com metodo post ... editei o meu la Quote Link to comment Share on other sites More sharing options...
Question
Guest - douglas -
Tenho um formulario que tem duas caixas de texto uma com nome usuario outra com nome senha, quando envio estas informações com botão submit elas não vão para a pagina php que tem variaveis com mesmo nome.
//formulario
<html>
<head><title>Aprendendo PHP 3</title></head>
<body>
<form method=post action="teste.php">
<input type="text" name="usuario" value="" size=10>
<br>
<input type="text" name="senha" value="" size=10>
<br>
<input type="submit" name="sub" value="Enviar!">
</form>
</body>
</html>
//pagina php
<?php
echo $usuario;
echo $senha;
?>
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.