使用PHP / MySQL从数据库中获取特定信息

时间:2012-03-27 02:11:56

标签: php mysql

如果我有一张表,如:

info_name | info_value

名称|苏珊

desc |人

我如何抓住并用PHP显示Susan?

谢谢!

2 个答案:

答案 0 :(得分:0)

阅读http://www.php.net/manual/en/book.mysql.php。 基本上你的php脚本将连接到数据库,执行查询以获取“susan”数据,然后你将不得不用php打印出数据。

答案 1 :(得分:0)

$query = "SELECT * from info_table where info_name = 'Susan'";
$result = mysql_query($query);
//given that there could be more than one 'Susan'
while($row = mysql_fetch_assoc($result)){
echo $row['info_name'] . " " . $row['info_value'] . "<br/>";
}