Can someone help me write the code to list the entire information in a table.
I have two fields, EMAILID and EMAIL.
I want to list them with breaks at the end.
eg.
1 email@address.com 2 email2@address.com
etc...
Thanks!
$sql = mysql_query("SELECT * FROM DB"); while($sql = mysql_fetch_array($sql)😉 { $id = $sql["emailid"]; $email = $sql["email"]; print" $id - $email" }