$query = mysql_query("SELECT * FROM mytable"); while ($row = mysql_fetch_assoc($query)) { //How to echo column names and values here? }
Is it possible to repeat table column names and values ββwhen repeating throughout the table in a while ?
source share