3

我正在为我的网站使用 PHP 和 smarty。我在地址栏中获得了一个 URL,我想将 URL 中的值用于 smaarty 模板。那么有可能做到这一点吗?如果是,你能解释一下吗?为了您的理解,我给您的网址如下:

http://localhost/eprime/entprm/web/control/modules/enquiries/manage_contact_us.php?contact_id=56&contact_full_name=ZainabJuzerBhavnagarwala&contact_email_id=fatemabhav21@gmail.com&op=view&reply_to_enquiry_suc=1&from_date=11/09/2000&to_date=11/09/2013

假设我想从上面的 URL 访问变量的值,contact_full_namecontact_email_id在我当前正在显示的 smarty 模板中访问。你能解释一下我怎么能做到这一点?

实际上我尝试了以下代码,但它没有输出任何内容。

<input type="text" name="contact_full_name" id="contact_full_name" value="{ if $data.contact_full_name!=''} {$data.contact_full_name|capitalize} {else} {$contact_full_name|capitalize} {/if}" class="">

提前致谢。

4

2 回答 2

4

查看smarty 保留变量

{$smarty.get.contact_email_id}
于 2013-09-11T08:31:32.070 回答
2

查看smarty 保留变量

{$smarty.get.contact_email_id}

由于 Smarty 将输出变量的内容(如果存在,如果不存在则什么都不输出,那么您应该:-

<input type="text" name="contact_full_name" id="contact_full_name" value="{$smarty.get.contact_full_name|capitalize}" class="" />

(任何人都可以复制和粘贴LOL)

并且根据之前的答案:

添加$smarty->debugging_ctrl='URL';到您的 php 脚本和&SMARTY_DEBUGURL 将弹出您分配的变量(但不是获取和发布)

于 2013-09-11T08:35:44.853 回答