Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<?php
if (!isset ($_SESSION["user_id"]))
{
echo"<font color='#FF0000'>Sorry aber du bist nicht eingeloggt!<hr><p></font>";
}
else
{
?>
<?php
include ("pages/cms/checkuser.php");
?>
<table border="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" id="AutoNumber1" width="445">
<tr>
<td width="88">
<img border="0" src="<?php echo $_SESSION["user_avatar"]; ?>"></td>
<td width="355"><font size="4"><b><?php echo $_SESSION["user_nickname"]; ?></b></font></td>
</tr>
<tr>
<td width="443" colspan="2"> </td>
</tr>
<tr>
<td width="88">Vorname</td>
<td width="355"><?php echo $_SESSION["user_vorname"]; ?></td>
</tr>
<tr>
<td width="88">Nachname</td>
<td width="355"><?php echo $_SESSION["user_nachname"]; ?></td>
</tr>
<tr>
<td width="88"> </td>
<td width="355"> </td>
</tr>
<tr>
<td width="88">Über...</td>
<td width="355"><?php echo $_SESSION["user_ueber"]; ?></td>
</tr>
</table>
<a href="logout.php">Ausloggen</a>
<?
}
?>
else
{
header ("Location: formular.php"); //diese Zeile
}
else
{
print("Du bist nicht eingeloggt!");
print("<a href="url">EINLOGGEN</a>"); //kannst noch einen Link zum Formular setzen
}