Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
echo "<a href=\"?page=1\">1</a><br>";
echo "<a href=\"?page=2\">2</a><br>";
if ($_GET['page'] == '1')
{
echo "1";
}
elseif ($_GET['page'] == '2')
{
echo "2";
}
?>