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.
我有一个页面,我需要根据 URL 有不同的内容。我需要做的是从数据库中获取页面标题,然后在 URL 中使用它,如下所示。我该怎么做?
每个页面需要有不同的内容,每个页面需要有不同的 URL,所以最后,URL 应该是这样的:
www.website.com/page.php?title=title-taken-from-database
在上述情况下,您只需使用 GET 超全局(url 中 ? 之后的查询字符串):
$page_title = $_GET['title'];
如果你想要“更漂亮”的 URL,你会想要使用 Rewrites。那样
http://www.website.com/some-page-title/
实际上会显示内容,就好像它被输入一样
http://www.website.com/page.php?title=some-page-title