|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-07-19 00:35 UTC] myuu84 at hotmail dot com
[2002-07-19 02:15 UTC] derick@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 05:00:01 2025 UTC |
Well, this is my code for this section of the site (I was testing something): <form action="index.php" method="POST"> Type somethin' in ya foo'! <input type="text" name="name"> <input type="submit"> </form><p> You typed: <?php echo $_POST["name"] ?> That's within index.php. It displays the form fine and the text, but, for example, if I were to type in "My name is Turner" in the text box and click the button, it displays "You typed: My name is TurnerName=My name is Turner" when I think it should just display "My name is Turner". Why would it do that?