If I had a MySQL table called "info" as described below and I wanted to print out an HTML table as described below, how would I do it?Fields in MySQL table:\[code\]id subject category actions date status\[/code\]HTML table structure: Two columns, first containing the field "subject", next containing the field "actions," sorted by "actions" descending. Only showing entries where "category" matches what the user entered as the variable "$find"Here is where I would start, but I'm not sure where to go next:\[code\]$result=mysql_query("SELECT subject, actions FROM info WHERE category='$find' ORDER BY votes DESC")or die(mysql_error());if(mysql_num_rows($result)>0){while($table=mysql_fetch_row($result)){\[/code\]Thanks in advance,John