Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上我需要一个基本的 PHP 网页来做这样的事情。
我不确定如何做这样的事情或这会被称为什么。非常感谢任何可以引导我走上正轨的帮助或任何事情!
不幸的是,我没有足够的积分来回复你的帖子,所以我会发布一个答案,假设我知道你想做什么。
所以基本上你想通过 URL 发送数据并处理它。
您可以这样做:(使用 GET 方法发送数据)
www.mywebsite.com/?c=myContent
在索引页面上,您可以编写以下代码:
<?php echo $_GET['c']; ?>