Home >Backend Development >PHP Tutorial > mysql_fetch_array可以这么写吗
mysql_fetch_array可以这样写吗?
while($row=mysql_fetch_array($result))可以写成
while(mysql_fetch_array($result)=true)
{
$row=mysql_fetch_array($result)
读取$row
}
}