i saw some examples that look like this:
$query = "SELECT * FROM $dbtable";
$result = mysql_query($query, $link);
while ($row = mysql_fetch_array($result)){?>
<? echo $row[name]; ?>:<? echo \$row[email]; ?> <br/>
<? }mysql_close(\$link); ?>
this works for me when i implement it- however,
what if i wanted to bring back everything- i.e. name, email, address, phone, and maybe 10 other fields - does every field have to be included as " echo $row[fieldname]; " or is there another way to output the entire db? (hope this question was clear 😉 )