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.
mysql_connect($host, $user, $pass);
mysql_select_db($db);
$abfrage = "SELECT * FROM corenews2_comments ORDER BY time DESC LIMIT 0,10";
$result = mysql_query($abfrage);
while ($comm = mysql_fetch_array($result))
echo "<a href='http://www.eblogx.de/index.php?&comments=".$comm["news_id"]."'>".$comm["author"]."</a>: substr($comm["comment"], 0, strpos($comm["comment"], ".", 50))<br>";
mysql_connect($host, $user, $pass);
mysql_select_db($db);
$abfrage = "SELECT * FROM corenews2_comments ORDER BY time DESC LIMIT 0,10";
$result = mysql_query($abfrage);
while ($comm = mysql_fetch_array($result))
echo "<a href='http://www.eblogx.de/index.php?&comments=".$comm["news_id"]."'>".$comm["author"]."</a>: ".substr($comm["comment"], 0, 30)."<br>";
echo "<a href='http://www.eblogx.de/index.php?&comments=".$comm["news_id"]."'>".$comm["author"]."</a>: ".substr($comm["comment"], 0, strpos($comm["comment"], ".", 50))."<br>";