Mysqli从数据库和格式获取数组到字符串

时间:2014-05-27 03:40:01

标签: php mysqli

我试图从数据库中获取字段数组:

$query=("SELECT firstname FROM users");
$res = $connect->query($query);

目标是显示每个用户的名字:

echo $firstname

输出:

Firstname1,Firstname2,Firstname3

如果我知道更多,我知道应该很容易。

1 个答案:

答案 0 :(得分:1)

要获取所有记录或一组记录,您必须获取while循环内的每条记录。

$query=mysqli_query($connect,"SELECT firstname FROM users");  // execute the query
$string="";
while ($row = mysqli_fetch_array($query))    // fetch each records
{
   $string.=$row['firstname']).',';      // append the firstname to a variable
}
echo $string;                          // output the constructed variable with all firstnames