php forum
php mysql forum
php mysql smarty
 
Topic Options
#283049 - 01/12/05 04:54 AM Fill a dropdown from database
Rutto Offline
Member

Registered: 02/10/01
Posts: 182
I would like to fill a dropdown menu with all rows of a certain field of my database, any suggestion on how to ? <img src="http://www.ubbdev.com/forum/images/graemlins/crazy.gif" alt="" />

Top
#283050 - 01/12/05 08:01 AM Re: Fill a dropdown from database [Re: ]
Zackary Offline
Member

Registered: 03/01/01
Posts: 652
Loc: West Fargo, ND USA
The following is a specific example from my roster system tied into my .Threads install.<br /><br />In this example I populate a drop down box for my members to choose from a list of possible classes avaiable on EverQuest.<br /><br />All this comes from a globals file I use so I can keep my templates cleaner and this code is used on multiple pages.<br /><br />----<br /> Query<br /><br />
Code:
 $EQClass_query = mysql_query("SELECT EQClassID, EQClass<br />	FROM {$config['tbprefix']}eqclass ORDER BY EQClass"); 
<br /><br /> Code for drop down box <br /><br />
Code:
 <br /><br />// Build the class select box<br />$selecteqclass_select = "&lt;select name=\"EQClassID\" class=\"formboxes\"&gt;";<br /><br />while ($class = mysql_fetch_array($EQClass_query)){<br />	extract($class,EXTR_PREFIX_ALL,"v");<br />	{  <br />		$selecteqclass_options .= "&lt;option value=\"$v_EQClassID\"&gt;$v_EQClass&lt;/option&gt;";  <br />	}<br />}<br /><br />$selecteqclass_end .= "&lt;/select&gt;"; 
<br /><br /> How I implement it on the template file <br /><br /> Template code <br /><br />
Code:
 &lt;b&gt;Class:&lt;/b&gt;<br />$selecteqclass_select<br />$selecteqclass_options<br />$selecteqclass_end<br />&lt;br /&gt; 
<br /><br />And finally, an example is attached as to how it displays.<br /><br />Hope that helps some. <img src="http://www.ubbdev.com/forum/images/graemlins/smile.gif" alt="" />


Attachments
124528-dropdown.jpg (241 downloads)


Top



Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks