In my controller I have:
$query = db_res('SELECT * FROM movie');
while( $item = mysql_fetch_assoc($query))
{$movies[] = $item; }
return $tpl->parseHtmlByName('cinema2.html', array('movies' => $movies));
then in my template I have:
<ul>
<bx_repeat:movies>
<li>__title__</li>
</bx_repeat:movies>
</ul>
and I get nothing but one loop and no title.
Anyone have doc on how todo it? or help