How exactly do I retrieve data and then display it in two colums?
This is what I have, now how do I change it?
$result = sql_query("SELECT title, custom_title FROM ".$prefix."_nwcmusic WHERE active='1' ORDER BY custom_title ASC", $dbi);
while(list($m_title, $custom_title) = sql_fetch_row($result, $dbi)) {
$m_title2 = ereg_replace("_", " ", $m_title);
if ($custom_title != "") {
$m_title2 = $custom_title; }
echo "<strong><big>·</big></strong> <a href=\"modules.php?name=NWC_Music&song=$m_title&open=1\">$m_title2</a>\n"