Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
### Page 1 ###
<?php
$sessionId = 233;
echo "<a href=\"page2.php?sessionId=$sessionId\">next page</a>";
?>
### Page 2 ###
<?php
$sessionId = $_GET[sessionId];
echo "Your sessionId is: $sessionId";
?>
echo "<a href=\"page2.php?var1=$var1&var2=$var2&var3=$var3_etc...\">next page</a>";
Array
(
[0] => element1
[1] => element2
[2] => element3
[3] => element4
)
$my_array = explode('/', $_SERVER["PATH_INFO"]);
//produces array
Array
(
[0] => string1
[1] => string2
[2] => string3
[3] => string4
)