Domain Empire

How to pass data

Spaceship Spaceship
Watch
How does one pass the data values that are input on one page to a subsequent page?
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
well you can use sss to do it depends what you know or what your host is called
 
0
•••
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,

------------
<?php
echo $_POST['user_input_one'];
echo $_POST['user_input_two'];
?>
------------
 
0
•••
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back