23.06.2010, 15:46
Ging doch schneller 
{DsLan}/htdocs/timemachine.php:
{DsLan}/htdocs/templates/game_timemachine.tpl:
Die Ausgabe ist dann (http://localhost/timemachine.php):
Und nun viel Erfolg mit deiner Zeitmaschine

{DsLan}/htdocs/timemachine.php:
PHP Code:
<?php
require('lib/smarty/Smarty.class.php');
$smarty = new Smarty();
$smarty->template_dir = 'templates/';
$smarty->compile_dir = 'templates_c/';
$smarty->assign('name','Otto');
$smarty->display('game_timemachine.tpl');
?>
{DsLan}/htdocs/templates/game_timemachine.tpl:
PHP Code:
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Dies ist ein Test</h1>
Ich heiße {$name}.
</body>
</html>
Die Ausgabe ist dann (http://localhost/timemachine.php):
PHP Code:
Dies ist ein Test
Ich heiße Otto
Und nun viel Erfolg mit deiner Zeitmaschine
