PHP查询mysql 并输出
数据库命是teseuser表是:user怎么通过ID取出name的内容id.php?id=123然后输出name内容没有分啊,求大神帮忙<?php$con=mysql_c...
数据库命是teseuser
表是:user
怎么通过ID取出name的内容
id.php?id=123 然后输出name内容
没有分啊,求大神帮忙
<?php $con=mysql_connect("localhost","root","g67ytrfdcxvDFG"); mysql_select_db("cpauser", $con);$result = mysql_query("SELECT * FROM user where name=".$_GET['name']);$result = mysql_fetch_assoc($result);echo json_encode($result );?>这个是代码和数据 改了一晚上了 一直都是空的
为了给程序配合恶补了一晚上PHP 实在是摸不着头脑啊 展开
表是:user
怎么通过ID取出name的内容
id.php?id=123 然后输出name内容
没有分啊,求大神帮忙
<?php $con=mysql_connect("localhost","root","g67ytrfdcxvDFG"); mysql_select_db("cpauser", $con);$result = mysql_query("SELECT * FROM user where name=".$_GET['name']);$result = mysql_fetch_assoc($result);echo json_encode($result );?>这个是代码和数据 改了一晚上了 一直都是空的
为了给程序配合恶补了一晚上PHP 实在是摸不着头脑啊 展开
4个回答
展开全部
PHP查询MySQL并输出使用的是SELECT 语句。
语法:
SELECT column_name(s) FROM table_name
SELECT 语句用于从数据库中选取数据。
示例:
选取存储在 "Persons" 表中的所有数据(* 字符选取表中所有数据)
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_db", $con);
$result = mysql_query("SELECT * FROM Persons");
while($row = mysql_fetch_array($result))
{
echo $row['FirstName'] . " " . $row['LastName'];
echo "<br />";
}
mysql_close($con);
?>
在 HTML 表格中显示结果
<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("my_db", $con);
$result = mysql_query("SELECT * FROM Persons");
echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['FirstName'] . "</td>";
echo "<td>" . $row['LastName'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>
以上代码的输出:
展开全部
你之所以没取出来,是因为你在echo json_encode($result);之前,少写了一行
$result = mysql_fetch_assoc($result);
$result = mysql_fetch_assoc($result);
追问
- -改过了 也不行啊
追答
我给你改好了,最完整的代码,你直接实验就行了
假设你这个页面地址是http://127.0.0.1/test.php
那么你只需要访问http://127.0.0.1/test.php?name=123就行了(假设你用户里,有name等于123的记录)
以下是代码
<?php
$con=mysql_connect("localhost","root","g67ytrfdcxvDFG");
mysql_select_db("cpauser", $con);
mysql_query("SET NAMES 'utf8'");//hanzi
$sql ="SELECT * FROM `user` where `name` = '".$_GET['name']."'";
$result = mysql_query($sql);
while($list = mysql_fetch_array($result,MYSQL_ASSOC)){
$return[]=$list;
}
if(!empty($return)){
echo json_encode($return);
}else{
echo 'no value';
}
die();
?>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$sql=mysql_query("select name from use where id=123");
$row=mysql_fetch_array($sql);
echo $row["name"];
这样就行
$row=mysql_fetch_array($sql);
echo $row["name"];
这样就行
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |