Hallo,
ich will mich langsam in die templ. sache einarbeiten und hab mal n programm von http://tut.php-q.net/template.html ausprobiert:
index.php:
<?php
error_reporting(E_ALL);
include('smarty/libs/Smarty.class.php');
$smarty = new Smarty;
$smarty->assign('name', 'Progman');
$smarty->assign('clanname', 'L33T HaXX0r Clan');
$smarty->display('tpl/gb_layout.tpl.php');
?>
gb_layout.tpl.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Testen macht spaß</title>
<meta http-equiv="Content-Type" content="text/xhtml; charset=ISO-8859-1" />
</head>
<body>
<p>
Willkommen {$name} auf der Seite vom Clan {$clanname}
</p>
</body>
</html>
die index.php liegt im Hauptverzeichnis, die andere relativ dazu so wie in dem beispiel oben, ich bekomme diese Fehlermeldung:
Warning: Smarty error: unable to read resource: "tpl/gb_layout.tpl.php" in C:\webserv\template\smarty\libs\Smarty.class.php on line 1095
Bestimmt nur ein blöder anfänger fehler. Aber vielleicht kann mir ja jm. helfen.
Mfg hagen