早上好,我需要一些帮助。我正在使用 mysql_fetch_row(),它从结果集中获取单个记录作为索引数组(按数字引用元素的数组)。但我无法将任何值传递给我的变量
//get the total number of images
$getTotal = "SELECT COUNT(*) FROM images";
$total = mysql_query($getTotal);
$rows = mysql_fetch_assoc($total);
$totalPix = $rows[0];
我试图将一个元素或单个记录传递到我的变量 totalPix 中,有没有其他方法可以实现这一点。感谢您