我试图从数据库中获取字段数组:
$query=("SELECT firstname FROM users");
$res = $connect->query($query);
目标是显示每个用户的名字:
echo $firstname
输出:
Firstname1,Firstname2,Firstname3
如果我知道更多,我知道应该很容易。
答案 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