PHP 新页面在同一个文件中?
我正在开发一个 PHP 项目,我需要一些帮助。我需要使用一个 php 文件,并在该 php 页面上有多个链接。如果用户点击其中一个,它将显示 phpinfo();例如。
那么我怎样才能在那个 php 页面上显示一个链接,而不是通常显示的内容呢?
I'm working on a PHP project and I need some help. I need to work with one php file and have multiple links on that php page. If a user clicks on one it will show phpinfo(); for example.
So how can I have a link on that one php page that shows that instead of what is usually shown?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
非常基本的例子:
Very basic example:
使用 URL 查询参数。类似于
/mypage.html&showphpinfo=true
在 php 文件的开头,检查该参数,如果存在,则显示
phpinfo()
的输出做其他一切事情。Use a URL query parameter. Something like
/mypage.html&showphpinfo=true
At the beginning of your php file, check for that parameter, and if it exists, show the output of
phpinfo()
instead of doing everything else.您正在寻找的东西不能仅靠 PHP 来完成。
由于这两条评论:
听起来您正在寻找的是 阿贾克斯。
如果是这样,您可能希望熟悉 JavaScript 框架,例如 jQuery。
查看此链接,了解有关使用 jQuery 内置 Ajax 功能的信息。
What you are looking for cannot be done by PHP alone.
due to these two comment:
It sounds like you are looking for is Ajax.
If so you might want to get friendly with a javascript framework such as jQuery.
Check out this link for information on using jQuery's built in Ajax functionality.