View Single Post
Old 04-14-2005   #13 (permalink)
Order
Local Biorust Beast
 
Order's Avatar
 
Join Date: Oct 2003
Location: San Diego, CA, USA
Posts: 2,253

Send a message via AIM to Order Send a message via MSN to Order Send a message via Yahoo to Order
Something like this may help:

PHP Code:
$main "SELECT * FROM members ORDER BY id DESC";

if(
$ret mysql_query($main))
{
  while(
$row mysql_fetch_array($ret))
  {
    echo 
'<pre>';
    
print_r($row);
    echo 
'</pre>';
  }
} else {
  die(
'MySQL Error: ' mysql_error());

Take a look at the results, it will show you what the $row arrays look like for your members, to adapt it to your site, remove the code within the while loop. Boom, instant member list.

Also, I am not one for doing all the hard work, I will only get you where you need to get, my help requires your intelligence, otherwise there is no learning.
__________________
Order is offline