php怎么将数据库中的所有数据赋值给变量

2024-12-20 03:39:26
推荐回答(1个)
回答1:

第一种:数组
$allbrand = array();
while ($testingrow = mysqli_fetch_array ($testingquery)) {
    $allbrand[] = $testingrow[2];
}
第二种:字符串
$allbrand = '';
while ($testingrow = mysqli_fetch_array ($testingquery)) {
    $allbrand .= $testingrow[2]."
";
}
请采纳,谢谢