Hey guys, I have a list of users that I'm trying to pull from a database. Now, I can list them in a horzintal fashion, but I'd like to have more control over how the names are layed out.
Currently, they are simplying layed out as such
user1 user2 user3 user4 user5 user6 etc.....
I'd like to have them layed out in rows of 5 such as this
user1 user2 user3 user4 user5
user6
Here's my code.
Code:while($userrslt = mysql_fetch_array($usersend)){ for ( $counter = 1; $counter <= 1; $counter += 1) { extract($userrslt); echo $username; echo " "; } }





Bookmarks