Quote:
Originally Posted by assassingod
This would be pretty easy, i'll make it an addon soon.
|
Its "dirty" code and don't have VB code vs. hard code, I am sure there is a simple way, but here is some thoughts.
Code:
<?php
require('./global.php');
$contribreport=mysql_query("SELECT userid,username,contrib FROM user WHERE contrib='1' ORDER BY userid");
while(list($userid,$username,$contrib)=mysql_fetch_row($contribreport)){
?>
<table width='98%' border='0' cellspacing='1' cellpadding='0' align='center'>
<tr>
<td align='center' width='100%'><a target='_blank' href='../forums/member.php?u=<? echo"$userid"; ?>'><font size='1' face='Verdana'><? echo" $username"; ?></font></a></td>
</tr>
<?
}
?>