📜  在 php 代码示例中打印选择 mysql

📅  最后修改于: 2022-03-11 14:54:36.679000             🧑  作者: Mango

代码示例2
// Process all rows
while($row = mysql_fetch_array($result)) {
    echo $row['column_aamir']; // Print a single column data
    echo print_r($row);       // Print the entire row data
}