vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Generating drop don choices in a from based on SQL entries (https://vborg.vbsupport.ru/showthread.php?t=116331)

lightnb 05-21-2006 10:51 PM

Generating drop don choices in a from based on SQL entries
 
I want to have a form with a drop down box, where all of the choices it gives are from a field in a table in a database.

For example, if the first 5 entries of my database are:

Make Model Year

Dodge Neon 97
Dodge Neon 98
Dodge Neon 99
Ford F 150 03
Ford F 250 04

I want a Form to appear with a "make" drop down box that gives the choices:

Dodge
Ford

Is that possible?

Thanks,

Nick

Eric 05-22-2006 06:37 AM

Sure, you could probably do something like:
PHP Code:

<select name="make">
<?php

$query 
mysql_query("SELECT DISTINCT Make FROM your_table");

$options '';

while (
$row mysql_fetch_array($query))
{
    
$options .= '<option value="'.stripslashes($row['Make']).'">'.stripslashes($row['Make']).'</option>';
}

echo 
$options;

?>
</select>


lightnb 05-23-2006 12:36 AM

cool. Thank you.

Dax IX 01-03-2009 07:38 AM

Is there an updated version of how to do this? I could have sworn I saw something about how to construct forms in newer versions, but I can't seem to find it now.

Also, is there a list of all functions, etc for vBulletin anywhere?

Thanks! :)

Dismounted 01-03-2009 09:24 AM

<a href="http://members.vbulletin.com/api/" target="_blank">vBulletin API</a>

Dax IX 01-03-2009 09:52 AM

Thank you. :) After more searches I came across that PDF. :o


All times are GMT. The time now is 02:44 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00977 seconds
  • Memory Usage 1,720KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete