我去作出算法菜單使用此代碼對的index.php錯誤在哪裏?
<?php
$menu=$_GET[menu];
$file=$_GET[file];
if(!isset($menu))
{
$menu="home";
}
if(($menu=="'")||($menu="-")||($menu="/"))
{
$menu="home";
}
switch($menu)
{
case'home':
$file="isi/home.html";
break;
case'profile':
$file="isi/profile.html";
break;
case'gallery':
$file="isi/lihat_bukutamu.php";
break;
case'download':
$file="isi/lihat_bukutamu.php";
break;
case'contact':
$file="isi/buku_tamu.php";
break;
}
include"header.php";
include"menu.php";
include"content.php";
include"footer.php";
?>
但但是當我嘗試這個劇本拿給我
注意:使用未定義的常量菜單 - 假設「菜單'在 C:\ XAMPP \ htdocs中\上線佈局\的index.php 2
說明:未定義指數:菜單在C:\ XAMPP \ htdocs中\上 線2
佈局\的index.php注意:未定義的常量文件的使用 - 假定 '文件' 在 C:\ XAMPP \ htdocs中\佈局\的index.php上線3
說明:未定義指數:文件在C:\ XAMPP \ htdocs中\佈局\上 線3
的index.php這是menu.php
<div id="menu-content">
<div id="menu">
<h3 class ="judul_1">Main Menu</h3>
<ul>
<li><a href="index.php?menu=home">Home</a></li>
<li><a href="index.php?menu=profile">Profile</a></li>
<li><a href="index.php?menu=gallery">Gallery</a></li>
<li><a href="index.php?menu=download">Download</a></li>
<li><a href="index.php?menu=contact">Contact</a></li>
</ul>
</div>
你能解決嗎?
我再有一個問題,你能解決嗎? – 2015-02-11 10:28:00
好的,告訴我是什麼問題 – 2015-02-11 10:30:13
是否「和」是不同的?對不起,只是 – 2015-02-11 10:34:30