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.
while($row = mysql_fetch_object($result))
{
$tpl = new template('insert.tpl');
$tpl->assign('NEWS', $row->news);
$tpl->display();
}
<?php
class template
{
var $source;
var $file;
var $vars = array();
var $result;
var $dir = './templates/';
public function template($filename)
{
if(is_dir($this->dir))
{
$file = $this->dir.$filename;
if(!is_file($file) || !is_readable($file))
die('Datei nicht vorhanden/lesbar.');
$this->source = implode(file($file));
}
else
die('Kein Ordner.');
}
public function assign($var, $value)
{
$this->vars[$var] = $value;
}
private function parse()
{
foreach($this->vars as $search => $replace)
{
$this->result = str_replace('{'.$search.'}', $replace, $this->source);
}
$this->vars = NULL;
}
public function display()
{
$this->parse();
echo $this->result;
}
}
?>
<?php
session_start();
include '_template.php';
include '_mysql.php';
//include '_functions.php';
$index_header = new template('index_header.tpl');
$index_header->display() or die('a');
//include '_content.php';
$index_footer = new template('index_footer.tpl');
$index_footer->display() or die('b');
?>