Answers for "print select mysql in php"

PHP
0

print select mysql in php

// Process all rows
while($row = mysql_fetch_array($result)) {
    echo $row['column_name']; // Print a single column data
    echo print_r($row);       // Print the entire row data
}
Posted by: Guest on December-30-2021
0

print select mysql in php

// 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
}
Posted by: Guest on December-30-2021

Browse Popular Code Answers by Language