标签: php mysqli
我有
$result = mysqli_query(...);
我知道如何获取数字行,但我需要实际的内容。在常规的mysql中它是这样的:
while($row = mysql_fetch_array($result)){...}
我如何使用Mysqli进行此操作?