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.
$sql = 'blablalba';
$result = mysql_query($sql);
if (@mysql_num_rows($result)) {
while ($row = mysql_fetch_array($result)) {
$text = $row['mysql_spaltenname']
}
}
$tmpl->assign('text', $text);
include ('../config/sql.php');
require('../config/config.php');
$smarty = new Smarty_config;
$sql= 'daten';
$result = mysql_query($sql);
if (@mysql_num_rows($result)) {
while ($row = mysql_fetch_array($result)) {
$text = $row['text'];
}
}
$smarty->assign('text', $text);
$smarty->display('index.tpl.htm');
echo $row->text