Current location: Hot Scripts Forums » Programming Languages » PHP » multi selection drop down list


multi selection drop down list

Reply
  #1 (permalink)  
Old 07-09-04, 07:48 AM
studenteye's Avatar
studenteye studenteye is offline
Newbie Coder
 
Join Date: Jul 2004
Location: UK
Posts: 42
Thanks: 0
Thanked 0 Times in 0 Posts
Question multi selection drop down list

Hi,

Plz Help Me !!

I have created one drop down multi select list in html.

I want to store all elements of that list selected by visitor of my website into

mysql database by using php.

I want to insert seprate rows in database for each selected element

Is it possible
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 07-10-04, 08:20 AM
georgian georgian is offline
New Member
 
Join Date: Jul 2004
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Of course

You need to name your multi select list with [] after it example:
PHP Code:

<select name="MyList[]" size="3" multiple>

  <
option value="One">1</option>
  <
option value="Two">2</option>
  <
option value="Three">3</option>
</
select
Then when you submit the form to process the values that are selected...
PHP Code:

//$_POST[MyList] will be an array containing all the values selected by the user.

foreach( $_POST[MyList] as $val ){
    
mysql_query"INSERT tbl_Temp SET Value = '$val' ");

Hope this helps.
Cheers
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
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
drop down list with links targeted misterman HTML/XHTML/XML 1 06-22-04 11:36 PM
display selected value in drop down list angela JavaScript 1 04-02-04 09:43 AM
month drop down list angela JavaScript 2 03-31-04 03:33 AM
Re-arranging values in a multi select box.. fluff JavaScript 3 02-24-04 11:45 AM
drop down menu problem !!! nurqeen PHP 1 02-08-04 09:07 PM


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