hanky Posted September 3, 2009 Share Posted September 3, 2009 Hi as an example: <form action="welcome.php" method="post"> Name: <input type="text" name="fname" /> John Last Name : <input type="text" name="flname" /> Van der Merwe Age: <input type="text" name="age" /> 37 <input type="submit" /> </form> and URL currently looks like http://www.hanky.com/welcome.php When I click the "Submit" button it strips the spaces and rest of last name, it looks like this Welcome <?php echo $_POST["fname"]; ?>!<br /> John van You are <?php echo $_POST["age"]; ?> years old. 37 Could anyone please help me on how to get rid of this problem? Quote Link to comment Share on other sites More sharing options...
Psycho Posted September 3, 2009 Share Posted September 3, 2009 You need to provide more information and some of your actual code. There's nothing about posting data that will strip the spaces by default, so you have an error in your code - which you didn't post. Even the code you did post isn't correct. On the output you only show code that echos the Last name and the age, but you show the first name displayed. Did you check the generated HTML code to see if the entire value is there and possibly not shown because of an HTML format problem? Quote Link to comment Share on other sites More sharing options...
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.