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

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

 

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.