BillyBoB Posted July 15, 2006 Share Posted July 15, 2006 im tring to make a page where the members are sorted by abc order then beside there name it has a number and it goes in order 1 2 3 4 5 6 ... etcheres what i have if u can make it echo a number before the username:[code]<?php$getuser = mysql_query("SELECT * from users order by username");while ($user = mysql_fetch_array($getuser)){echo (" <a href=\"members.php?user=$user[username]\">$user[username]</a><br />\n");}?>[/code]plz help thanks Quote Link to comment Share on other sites More sharing options...
trq Posted July 15, 2006 Share Posted July 15, 2006 [code=php:0]<?php$getuser = mysql_query("SELECT * from users order by username");$i = 1;while ($user = mysql_fetch_array($getuser)){echo ("$i <a href=\"members.php?user=$user[username]\">$user[username]</a><br />\n");$i++;}?>[/code] Quote Link to comment Share on other sites More sharing options...
BillyBoB Posted July 15, 2006 Author Share Posted July 15, 2006 i tried that but it didn't work b4 lol and i know why cuzim not that smart awake with only 5-6 hours or sleep cuz i didnt put$i++ lol stupid me lol Quote Link to comment Share on other sites More sharing options...
trq Posted July 15, 2006 Share Posted July 15, 2006 5-6 hours.... lucky you. Quote Link to comment Share on other sites More sharing options...
BillyBoB Posted July 15, 2006 Author Share Posted July 15, 2006 i know but im 14 lol Quote Link to comment Share on other sites More sharing options...
BillyBoB Posted July 15, 2006 Author Share Posted July 15, 2006 will u plz tell me how the karma works i dont get it im usually pretty nice and isnt karma like how u think about other pplif so why do i have -2 Quote Link to comment Share on other sites More sharing options...
BillyBoB Posted July 15, 2006 Author Share Posted July 15, 2006 no wonder u have 2000 + post uve been here for almost 2 years lol i just started this mourning early Quote Link to comment Share on other sites More sharing options...
trq Posted July 15, 2006 Share Posted July 15, 2006 [quote]will u plz tell me how the karma works[/quote]Who cares? Quote Link to comment Share on other sites More sharing options...
BillyBoB Posted July 15, 2006 Author Share Posted July 15, 2006 me it makes me look bad :'( :'( Quote Link to comment Share on other sites More sharing options...
pixy Posted July 15, 2006 Share Posted July 15, 2006 Lol, dude, chill out.Later today I'll post you my view_users.php script if you want it. It lets you sort by the different types of information (IE, order by username, first name, last name, etc.) pagnates results over pages so you don't have to show a long list of members on one page. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.