Jump to content

Dynamic Text Input on Page1 for Display on Page2


Recommended Posts

Can anyone direct me to a tutorial like this one.

For Example;

I will like to go to scheduleinput.htm to input the information and want for that info to be viewable on schedule.htm on the same website. Is that possible? PHP, Etc... Can anyone help me?

Just echo or print the variables

 

 

form.php

 

<form action="testresult.php" method="post">

<input type="text" name="test" size="2">

<input type="submit" name="submit" value="click this"

<form>

 

 

testresult.php

 

 

<?php

echo $_POST['test'];

?>

 

Where the $_POST var name is equal to your form fieldname.

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.