I'm trying to get my results in columns, 4 columns to be exact.
Right now I just have the PHP exporting in one long list. I have over 500 entries, what I'd like to do is have them display in 4 close to equal columns.
I have:
<?
require ( "xxxx.php" );
$signup_rs = $conn->Execute ( "SELECT * FROM contest ORDER BY contest_date DESC" ) or die ( $conn->ErrorMsg() );
?>
<? while ( ! $signup_rs->EOF ) { ?>
<?=($signup_rs->Fields("contest_username"))?>
<? $signup_rs->MoveNext(); } ?>