我需要幫助。在我的網站上,我使用URL參數來決定在頁面上包含哪些其他PHP文件。我的第一個問題是:index.php中應該包含什麼以及包含的PHP文件應包含哪些內容?PHP index.php包括結構
在互聯網上,我發現說明,說明該結構的index.php:
<html>
<head>
<?php include 'header.php'; ?>
</head>
<body>
<?php include 'menu.php'; ?>
<?php include 'content.php'; /* Including page based on the parameters in the url */ ?>
</body>
</html>
通過這樣的結構,我怎麼可以改變數據在<head>
部分基於在content.php
的內容?例如,對於index.php?option=article&id_article=1
,我將包含article.php
並顯示帶有ID爲1的文章。那麼,在包含文章之前編寫<head>
時,如何更改<title>
,<meta
>等內容?
謝謝!
「在網上我發現說明......」 - 我建議你嘗試不同的互聯網說明。 – Smandoli
你能用javascript嗎? – Sharlike
你的問題可能太寬泛,無法在這裏回答。也許你應該看看像CakePHP,Kohana,Laravel這樣的框架 – chrislondon