如何在openx模板中嵌入语句(template.html)

时间:2012-10-29 10:57:07

标签: php html openx

现在我正在编写一个openx插件。 但现在我有一个从数据库获得的数组数据。 当我使用语句foreach嵌入到html页面(openx中的模板)时,我写道:

<table>
        <thead>
            <tr>
                <td>Id</td>
                <td>Name</td>
                <td>Description</td>
                <td>Action</td>
            </tr>
        </thead>
    {foreach key=id item=row from=$rsResult}
    <tr>
        <td>{$row.id}</td>
        <td>{$row.name}</td>
        <td>{$row.description}</td>
        <td><a href="/www/admin/plugins/demoHelloWorld/demoHelloWorld-delete.php?id={$row.id}">DELETE</a></td>
    </tr>
    {/foreach}
    </table>

但我不知道将语句嵌入到html页面(openx模板)中。 你能帮我吗? 非常感谢!

1 个答案:

答案 0 :(得分:0)

我发现解决了这个问题: 我使用了smarty标签。 在php:

for ($i=1;$i++;$i<10) {
 echo $i;
}

使用smarty标签:

{section name=temp loop=9}
 {$smarty.section.foo.iteration}
{/section}
这是我的研究结果。 :)