使用Smarty中的POST功能

发布于 2024-11-16 17:34:44 字数 287 浏览 2 评论 0原文

有人可以向我解释一下如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罪歌 2024-11-23 17:34:44

要将变量分配给第一个表单,您需要在生成第一个表单的 PHP 脚本中调用 $smarty->assign()

// Assuming your Smarty object is $smarty
$smarty->assign('variablename', $variablename);

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:

// Assuming your Smarty object is $smarty
$smarty->assign('variablename', $variablename);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文