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.
$table .="<td><a href='sub_page.php?p=".$row['id']."&lang=".$_SESSION['lang']."&cat=".$row["cat"]."'>".$row["cat_name_rus"]."</a></td>";
$sql = "SELECT * FROM sub_pages WHERE cat = '{$cat}'";
$res = mysql_query($sql);
echo "<table>";
while ($out=mysql_fetch_assoc($res)) {
echo "<td><a href=\"sub_page.php?p={$row['id']}&lang={$_SESSION['lang']}&cat={$row["cat"]}\">{$row["cat_name_rus"]}</a></td>";
}
echo "</table>";