victormanuel Posted September 16, 2004 Share Posted September 16, 2004 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? Quote Link to comment https://forums.phpfreaks.com/topic/1961-dynamic-text-input-on-page1-for-display-on-page2/ Share on other sites More sharing options...
morpheus.100 Posted September 17, 2004 Share Posted September 17, 2004 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. Quote Link to comment https://forums.phpfreaks.com/topic/1961-dynamic-text-input-on-page1-for-display-on-page2/#findComment-6408 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.