在php中显示来自mysql的数据结果

时间:2014-02-06 13:20:39

标签: php mysql

我需要在数据库中显示公司名称,但此代码对我不起作用。请帮忙。感谢

<?php

// connect to the database
include('php/db.php');

   $result = mysql_query("select name from company where company_id = 1");


 echo $result['name'];
 ?>

3 个答案:

答案 0 :(得分:0)

试试这段代码:

 while($row = mysql_fetch_array($result))
  {
   echo ""+$row['name'];
   echo "<br>";
  }

答案 1 :(得分:0)

试试这个

// connect to the database
include('php/db.php');
$result = mysql_query("select name from company where company_id='1'");
while($row = mysql_fetch_array($result))
{
      echo $row['name']."<br>";
}

答案 2 :(得分:-1)

mysql_query返回一个对象,首先需要使用mysql_fetch_assoc();将对象转换为关联数组

然后,您可以使用您使用的方法访问该数组的元素。

您可能希望查看使用mysqli函数,因为mysql函数已弃用。