打算用PHP寫網頁
一開始先隨意簡單就好
然後再慢慢改複雜
打算用include把網頁包進來
然後中間再依照各個網頁調整程式碼
<?
include('./func/function.php');//涵式
include('./template/header.html');//頁首
include('./menu.php');//選單
include('./template/footer.html');//頁尾
?>
大概像這樣
function.php放常用的涵式
header.html放頁首
menu.php用來顯示選單
footer.html放頁尾
需要使用新涵式時只有寫在function.php就可以了
而頁首、頁尾都是同樣的型態,
所以也是只要改2個檔案就好