Notice: Undefined index: title in C:\wamp\www\index.php on line 26 报错

完整代码如下:求指点,为何报错<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3... 完整代码如下:求指点,为何报错

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>PHP与Web页面的完美交互</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>

<body>
<?php
include_once("top.php");
?>
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="195"><img src="images/bg_02.jpg" width="196" height="483" border="0" /></td>
<td width="604" align="center" valign="top">
<?php
switch($_GET['title']){ //根据URL传递的参数值进行判断
case "我的文章": //判断当值等于我的文章时
include("art.php"); //包含art.php文件
break;
case "我的相册":
include("pic.php");
break;
case "注册":
include("reg.php");
break;
case "登陆":
include("login.php");
break;
default:
include("main.php");
}
?></td>
<td width="1" background="images/bg_05.jpg"></td>
</tr>
<tr>
<td colspan="3"><img src="images/bg_06.jpg" width="800" height="37" border="0" /></td>
</tr>
</table>
</body>
</html>
展开
 我来答
Zjmainstay
2015-01-04 · 知道合伙人互联网行家
Zjmainstay
知道合伙人互联网行家
采纳数:580 获赞数:1129
http://www.zjmainstay.cn

向TA提问 私信TA
展开全部
当你请求的链接地址中没有title=abc这个参数时,
使用$_GET['title']获取title会有上面提示。

解决方法:
    使用前先判断 
    $_GET['title'] = empty($_GET['title']) ? '' : $_GET['title'];
    再使用就没有报错了。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式