将 PHP 处理传递给另一个页面
将其视为穷人的模板系统。我想将我的值存储到数据数组中,然后继续处理另一个页面上的视图。我将使用什么 PHP 命令来解决这个问题?
Think of it as a poor mans template system. I want to store my values into a data array and then continue processing the view on another page. What PHP command would I use to accommodate this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以
包含
第二个文件,第二个文件将有权访问所有数据。You can
include
the second file and the second file will have access to all data.您需要做的就是设置数组,然后包含将显示它的页面。您包含的页面将有权访问 $myArray 的值。
主页
ArrayDisplayPage.php
All you need to do is set your array, and then include the page that will display it. Your included page will have access to the value(s) of $myArray.
Main Page
ArrayDisplayPage.php