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.
<?
include("dbincluden.php");
if(isset($_POST['Button'])):
if($_POST['check'] == "behoben"):
$status = "behoben";
else:
$status = "fehler";
endif;
$id = $_POST['id'];
$update = mysql_query("UPDATE fehler SET check='".$status."' WHERE ID='".mysql_real_escape_string($id)."'");
if($update):
echo 'Gespeichert';
else:
echo 'Nicht gespeichert, Fehler: '.mysql_error();
endif;
endif;
//Daten holen
$id = $_GET['id'];
$data = mysql_fetch_array(mysql_query("SELECT * FROM fehler WHERE ID ='".mysql_real_escape_string($id)."' "));
//checken, ob fehler beoben ist oder nicht, $data['check'] ist also entweder "behoben" oder "fehler"
$behoben = ($data['check'] == 'behoben') ? ' checked' : '';
$nicht_behoben = ($data['check'] == 'fehler') ? ' checked' : '';
echo '
<form method="post" action="fehlerchecken.php?id='.$_GET['id'].'">
<input type="hidden" value="'.$id.'" name="id">
<input type="radio" name="check" value="behoben" '.$behoben.'> Fehler behoben
<br>
<input type="radio" name="check" '.$nicht_behoben.'> Nicht behoben
<br/>
<input type="submit" name="Button" value="speichern">
</form>';
?>
<?php
$Inhalt = str_replace("<br />", "<br>", $Inhalt);
$Inhalt = str_replace(":smile:", "<img src="smilies/smile.png">", $Inhalt);
$Inhalt = str_replace(":sad:", "<img src="smilies/sad.png">", $Inhalt);
$Inhalt = str_replace(":angry:", "<img src="smilies/angry.png">", $Inhalt);
$Inhalt = str_replace(":cry:", "<img src="smilies/cry.png">", $Inhalt);
$Inhalt = str_replace(":wink:", "<img src="smilies/wink.png">", $Inhalt);
$Inhalt = str_replace(":thumbsup:", "<img src="smilies/thumbsup.png">", $Inhalt);
$Inhalt = str_replace("[ B ]", "<b>", $Inhalt);
$Inhalt = str_replace("[ /B ]", "</b>", $Inhalt);
$Inhalt = str_replace("[ K ]", "<i>", $Inhalt);
$Inhalt = str_replace("[ /K ]", "</i>", $Inhalt);
$Inhalt = str_replace("[ U ]", "<u>", $Inhalt);
$Inhalt = str_replace("[ /U ]", "</u>", $Inhalt);
$Inhalt = preg_replace("#\[URL=http://(.*?)\](.*?)\[/URL\]#si", '<a href="http://\1" target="_blank">\2</a>', $Inhalt);
$Inhalt = preg_replace("#\[URL=(.*?)\](.*?)\[/URL\]#si", '<a href="http://\1" target="_blank">\2</a>', $Inhalt);
$Inhalt = preg_replace("#\[IMG\]http://(.*?)\[/IMG\]#si", '<img src="http://\1" border="0">', $Inhalt);
$Inhalt = preg_replace("#\[IMG\](.*?)\[/IMG\]#si", '<img src="http://\1" border="0"></a>', $Inhalt);
?>
<?php
<?php
include("dbincluden.php");
$sql = "SELECT * FROM news ORDER BY id DESC LIMIT 3";
$ausgabe=mysql_query($sql);
while ($news = mysql_fetch_object ($ausgabe))
{
?>
<center>
<table cellpadding="4" cellspacing="1" border="0" class="tableinborder" width="95%" align="center">
<tr>
<td class="tabletitle" align="left"><span class="normalfont"><b>News</b></span></td>
</tr>
<tr>
<td class="tablecat" align="left"><span class="smallfont"><b><?php echo($news->Titel); ?></b></span></td>
</tr>
<tr>
<td class="tablea" align="left"><span class="smallfont"><?php echo($news->Inhalt); ?></span></td>
</tr>
<tr>
<td class="tablecat" align="left"><span class="smallfont"><b>Erstellt von <?php echo($news->Name); ?></b>.</span></td>
</tr>
</table><br />
</center>
<?php }