Jump to content

how to resubmit url and keep the spaces in url


hanky

Recommended Posts

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?

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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.