Current location: Hot Scripts Forums » Programming Languages » PHP » Population List box with registered users


Population List box with registered users

Reply
  #1 (permalink)  
Old 11-05-03, 10:57 AM
ruthlezz1 ruthlezz1 is offline
New Member
 
Join Date: Nov 2003
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Population List box with registered users

I need to know how to populate a list box with the registered users on a site. I am running PHP and mysql database and this form object will be in a module.

Thanks in advance for your help.
Reply With Quote
  #2 (permalink)  
Old 11-06-03, 03:46 AM
Stefan's Avatar
Stefan Stefan is offline
Junior Code Guru
 
Join Date: Jun 2003
Location: Utrecht, The Netherlands
Posts: 599
Thanks: 0
Thanked 0 Times in 0 Posts
I am not exactly sure what you want. do you want a "who's online" box? if so, it highly depends on the structure of your user database how to create such a box.
Reply With Quote
  #3 (permalink)  
Old 11-06-03, 03:01 PM
insane insane is offline
New Member
 
Join Date: Nov 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
All you need to do is pull the list out of you database, then build a text string using a WHILE statement, then plug the text string into wherever you want the list box...

here is an example

Code:
while ($player_array = mysql_fetch_array($player_sql)) 
	{
	    $pNa = $player_array["username"];
	    $pId = $player_array["id"];
                 $playerstring .= "<option value=\"$pId\">$pNa</option>";
	}
Now... wherever you want the dropdown box to appear do something like this...

Code:
<select name="player1" size="1">
<option value="">select player</option>
<?=$playerstring?>
</select>

Last edited by insane; 11-06-03 at 03:38 PM.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Formmail Script Fix - Cant display multiple list selections.. zamen PHP 3 05-02-04 09:59 AM
I want to provide free email service to my users... macj1326 PHP 9 11-24-03 03:04 PM
I need Help with Dropdown list knightjt02 PHP 3 10-30-03 03:10 AM
Newsletter and mailing list Hoolines Script Requests 2 10-18-03 07:00 PM
managing linux users from php asinclair PHP 0 09-22-03 06:08 AM


All times are GMT -5. The time now is 07:27 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.