PHP 新页面在同一个文件中?

发布于 2024-10-16 12:04:39 字数 137 浏览 1 评论 0原文

我正在开发一个 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 技术交流群。

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

发布评论

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

评论(3

洛阳烟雨空心柳 2024-10-23 12:04:39

非常基本的例子:

<a href="index.php?page=phpinfo">phpinfo</a>

<?php

if($_GET['page']=='phpinfo'){
phpinfo();
}

?>

Very basic example:

<a href="index.php?page=phpinfo">phpinfo</a>

<?php

if($_GET['page']=='phpinfo'){
phpinfo();
}

?>
白馒头 2024-10-23 12:04:39

使用 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.

尾戒 2024-10-23 12:04:39

您正在寻找的东西不能仅靠 PHP 来完成。

由于这两条评论:

您想在不重新加载页面的情况下执行此操作吗? ——海尔伍德

是的。我只是希望它隐藏其他所有内容并显示 phpinfo – AustinM

听起来您正在寻找的是 阿贾克斯

如果是这样,您可能希望熟悉 JavaScript 框架,例如 jQuery

查看此链接,了解有关使用 jQuery 内置 Ajax 功能的信息。

What you are looking for cannot be done by PHP alone.

due to these two comment:

Do you want to do this without reloading the page? – Hailwood

Yes. I just want it to hide everything else and show phpinfo – AustinM

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文