Jestem początkującym w smarty i prosże o pomoc zwłaszcza jak kod z książki
http://helion.pl/ebooki/smarty-szablony-w-...marty_ebook.htmktórą kupiłem wyświetla bląd przy kompilowaniu:
Fatal error: Uncaught exception 'SmartyCompilerException' with message 'Syntax Error in template "./templates/index.tpl" on line 29 "{if %tabela.index% is not odd}" - Unexpected "%"' in /home/dealer/main/pkg/cherr/luki/html/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php:656 Stack trace: #0 /home/dealer/main/pkg/cherr/luki/html/smarty/libs/sysplugins/smarty_internal_templateparser.php(3139): Smarty_Internal_TemplateCompilerBase->trigger_template_error() #1 /home/dealer/main/pkg/cherr/luki/html/smarty/libs/sysplugins/smarty_internal_templateparser.php(3204): Smarty_Internal_Templateparser->yy_syntax_error(40, '%') #2 /home/dealer/main/pkg/cherr/luki/html/smarty/libs/sysplugins/smarty_internal_smartytemplatecompiler.php(105): Smarty_Internal_Templateparser->doParse(40, '%') #3 /home/dealer/main/pkg/cherr/luki/html/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php(192): Smarty_Internal_SmartyTemplateCompiler->doCompile('<html>??<head> ...') #4 /home/dealer/main/pkg/cherr/luki/html/smarty/libs/ in /home/dealer/main/pkg/cherr/luki/html/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php on line 656
jeśli wykasuję instrukcję {if %tabela.index% is not odd}
to działa jak należy
co tu jest nie tak

<html>
<head> <title> Przyk3ad architektury witryny </title>
</head>
<body>
<table border="0" width="100%">
<tr>
<td align="left">
<a href="http://www.packtpub.com">
<img src="images\PacktLogoSmall.png" border="0">
</a>
<img src="images\focused.gif">
</td>
<td>
<h1> Rozdzia3 2 przyk3ad </h1>
</td>
</tr>
</table>
<br>
Oto ksi1żki wywietlane w tabeli sk3adaj1cej si蟺 dwkolumn:
<br> <br>
<table border="1" width="100%">
{section name=tabela
loop=$book-
>title
}
{if %tabela.
index% is
not odd
}
<tr>
<td align="left">
<table>
<tr>
<td>
<img src="images\{$book->image[tbl]}" width="220">
</td>
<td valign="top">
<font size=+1><b> {$book->title[tbl]} </b></font><br>
<font size=-1 color=blue><b> {$book->author[tbl]} </b></font><br>
{$book->description[tbl]} <br>
Rok wydania: {$book->year[tbl]} <br>
<font size=-1>Cena: <s>{$book->price[tbl]}</s> PLN</font> <br>
Nasza cena: {$book->discounted[tbl]} PLN
<font color=red> oszcz飺aj {$book->discount[tbl]} % </font>
</td>
</tr>
</table>
</td>
{if %tabela.
index% is odd
}
</tr>
</table>
</body>
</html>