Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
if ($_SESSION['irgendwas']) {}
if (isset( $_SESSION['irgendwas'] )) {}
if(isset($_SESSION['foobar']) && !empty($_SESSION['foobar'])) {
// code
}
<?php
if(isset($_SESSION['status'] == 0) && !empty($_SESSION['status'] == 0))
?>
if(isset($_SESSION['status']) && $_SESSION['status'] == 0)