php – 如何在smarty模板中从URL访问变量值?
作者:互联网
我在我的网站上使用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
假设从上面的URL我想在我当前被替换的smarty模板中访问变量contact_full_name和contact_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="">
提前致谢.
解决方法:
{$smarty.get.contact_email_id}
标签:php,if-statement,smarty,query-string 来源: https://codeday.me/bug/20190825/1719594.html