使用Smarty中的POST功能
有人可以向我解释一下如何在 Smarty PHP 中使用 post 函数的具体步骤吗?我必须在某个地方留下一些东西,但我不确定是什么。我正在 CMSMadeSimple 中工作,我想将一个变量从一个表单发布到另一个表单,但该变量在第一个表单中不存在。我需要采取哪些步骤才能做到这一点?
澄清:我正在 CMSMS 中使用一个名为 FormBuilder 的模块。该模块正在从另一个模块“产品”访问信息。现在,这些字段就是我想要访问的内容。例如,我试图将信息从第一个表单传递到第二个表单中应选择的字段,其中名称为“cntnt01”,值为“205”。
Can someone explain to me the exact steps on how to use the post function in Smarty PHP? I have to be leaving something out somewhere, and I'm not sure what. I'm workingin CMSMadeSimple and I want to post a variable from one form to another, except the variable doesn't exist in the first form. What are the steps I need to take to do this?
Clarification: I am using a module in CMSMS called FormBuilder. This module is accessing info from Products, another module. Now, these fields are what I'm trying to access. For instance, I am trying to pass info from the first form to a field in the second form which should be selected, where the name is "cntnt01" and the value is "205".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将变量分配给第一个表单,您需要在生成第一个表单的 PHP 脚本中调用
$smarty->assign()
:To assign the variable where it will be available to the first form, you need to call
$smarty->assign()
in the PHP script that produces the first form: