如何在smarty模板中访问URL中的变量值?

时间:2013-09-11 08:29:05

标签: php if-statement smarty query-string

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

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

假设从上面的网址我想在我当前被替换的smarty模板中访问变量contact_full_namecontact_email_id的值。你能解释一下我怎么能实现这个目标?

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

<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="">

提前致谢。

2 个答案:

答案 0 :(得分:4)

查看smarty reserved variables

{$smarty.get.contact_email_id}

答案 1 :(得分:2)

查看smarty reserved variables

{$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_DEBUG添加到该URL将弹出您指定的变量(但不会获取和发布)