2016-09-17 35 views
-1

在index.php內部,它包括用於所述的header.php 3個以下頁面通過點擊index.php中的header.php,cotent.php如何變成cotent1.php?

<?php include 'header.php'; ?> 
<?php include 'content.php'; ?> 
<?php include 'footer.php'; ?> 

,它像所附PIC menu and content pic的菜單。

現在的問題是在我點擊菜單,我想content.php變化到另一個頁面,例如content1.php。否則content.php中的內容會改變。這怎麼可能可能是我的index.php內發生的的header.php被點擊時和content.php將變更爲content1.php其content.php裏面的內容將被改變什麼,我想。

請指教,我的電子郵件是[email protected]。謝謝。

問候

安迪

回答

0

試試這個

<?php include 'header.php'; ?> 

<?php if(isset($_GET['pagename'])) 
{ 
$pagename=$_GET['pagename'].'.php'; 
} 
else 
{ 
$pagename='content.php'; 
} 
?> 
<?php include $pagename; ?> 
<?php include 'footer.php'; ?> 

這是你的鏈接內華達州巴

<a href="index.php?pagename=content">page1</a> 
<a href="index.php?pagename=content1">page2</a> 
<a href="index.php?pagename=content2">page3</a>