如何使用smarty检索数据以形成html?

时间:2014-09-17 22:07:40

标签: smarty prestashop

如何在presta中使用smarty检索数据以形成html?

由于

    <form action="" method="post">
         <input type="file" id="image"/>
         <button type="submit"/>
    </form>

1 个答案:

答案 0 :(得分:1)

您需要首先使用语法

中的以下内容在php中分配变量
$smarty->assign('image',$imagename);

现在您可以按如下方式访问html中指定的变量

<input type="file" id="image" value="{$image}" />

有关在prestashop中使用循环和smarty的其他实体的进一步参考,请访问他的网址: http://doc.prestashop.com/display/PS15/Theme+templates+and+Smarty