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?

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • 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.