Jump to content

[SOLVED] displpay information in a new php page


ilikephp

Recommended Posts

Hello,

 

I have a php page that contains a form( the user should enter the information in the fields, for example: name)

when the submit button is clicked, I need the infomartion entered, to be displayed in a new page.

 

How can I di it plz?

 

example: if the user put: myname inside the field name, the myname should be displayed in the new page

Link to comment
Share on other sites

thanks for the webiste, but I still need help ! :S

 

is there any link to put it in the other page in order not to display undifined name?

 

 

Huh?

 

somepage.html

<form action="otherpage.php" method="post">
     <input type="text" name="name">
     <input type="submit" value="submit">
</form>

 

otherpage.php

echo $_POST['name']; //will print whatever is inputted in the 'name' text field in somepage.html

 

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.