php 问题Notice: Undefined index q in C:\wamp\www\getuser.php in line 8
<?php/***@authorshica*@copyright2011*/$q=$_GET['q'];$con=mysql_connect('localhost','r...
<?php
/**
* @author shica
* @copyright 2011
*/
$q=$_GET['q'];
$con = mysql_connect('localhost','root','');
if(!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("ajax_demo", $con);
$sql="select * from user where id = '".$q."'";
$result = mysql_query($sql);
echo "<table border='1'>
<tr>
<th>FirstName</th>
<th>LastName</th>
<th>Age</th>
<th>Job</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['FirstName'] . "</td>";
echo "<td>" . $row['LastName'] . "</td>";
echo "<td>" . $row['Age'] . "</td>";
echo "<td>" . $row['Hometown'] . "</td>";
echo "<td>" . $row['Job'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?> 展开
/**
* @author shica
* @copyright 2011
*/
$q=$_GET['q'];
$con = mysql_connect('localhost','root','');
if(!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("ajax_demo", $con);
$sql="select * from user where id = '".$q."'";
$result = mysql_query($sql);
echo "<table border='1'>
<tr>
<th>FirstName</th>
<th>LastName</th>
<th>Age</th>
<th>Job</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['FirstName'] . "</td>";
echo "<td>" . $row['LastName'] . "</td>";
echo "<td>" . $row['Age'] . "</td>";
echo "<td>" . $row['Hometown'] . "</td>";
echo "<td>" . $row['Job'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?> 展开
展开全部
$q=$_GET['q']; 是这个 错了
因为$_GET['q'] 没有 定义 所以报错
有两个 方法 解决
第一 $q=$_GET['q']; 改成 $q=‘1’;
第二 在这个 网页的 地址后面 加 一句 ?q=1
比如 你现在这个网页地址是 http://localhost/index.html
你就在地址后面 加上去 写成 http://localhost/index.html?q=1
因为$_GET['q'] 没有 定义 所以报错
有两个 方法 解决
第一 $q=$_GET['q']; 改成 $q=‘1’;
第二 在这个 网页的 地址后面 加 一句 ?q=1
比如 你现在这个网页地址是 http://localhost/index.html
你就在地址后面 加上去 写成 http://localhost/index.html?q=1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
问题出在第一句:
$q=$_GET['q'];
1. 确定是通过GET方法提交过来的吗?
2. 如果确定是GET方法提交的,那是不是提交了一个空值?
$q=$_GET['q'];
1. 确定是通过GET方法提交过来的吗?
2. 如果确定是GET方法提交的,那是不是提交了一个空值?
更多追问追答
追答
莫非你只写了getuser.php文件,而没写例子开头的HTML文件和selectuser.js文件?
追问
都写了 我怕有问题 特意又重新粘贴复制了一遍 结果还是一样的 那句有什么作用呀
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个页面之前的页面里边是否是通过 GET方式提交的 提交的东西里边是否有q这个参数 这个参数是否为空
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$q=$_GET['q']; 你这句有啥用啊???
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询