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.
<a href="page2.php?variable1=yes&variable2=no" title="yes and no">yes and no</a>
<form action="page2.php" method="post">
<input type="text" name="variable1" value="yes" />
<input type="text" name="variable2" value="no" />
<input type="submit" name="submit" action="submit" />
</form>
session_start();
if (isset($variable1)) {
$_SESSION['variable1'] = $variable1;
}
if (isset($variable2)) {
$_SESSION['variable2'] = $variable1;
}