| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | #3 (permalink) |
| NamePros Member Join Date: Jul 2003
Posts: 118
![]() | use forms to pass the data to the other page ------------ <form enctype="multipart/form-data" action="subsequent_page.php" method="POST"> <input type="text" name="user_input_one"> <input type="text" name="user_input_two"> <input type="submit" value="Go To Next Page"> </form> ------------ The inputted values will then be sent to the next page. Where you can print them on screen by doing, ????: NamePros.com http://www.namepros.com/programming/15050-how-to-pass-data.html ------------ <?php echo $_POST['user_input_one']; echo $_POST['user_input_two']; ?> ------------
__________________ Paulicon Web design - Your one stop shop |
| |