473,403 Members | 2,284 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,403 software developers and data experts.

insert multiple option in the database

1 Bit
how can i insert multiple option selected on a select box?
how can insert them in the database ?
Feb 4 '20 #1
1 2080
Ishan Shah
47 32bit
We Can Store Multiple Select Options on an array and save the values to the database using comma-separated.

Expand|Select|Wrap|Line Numbers
  1. <label for="services">Select Services :</label>
  2.           <select id="sel_services" name="services[]" multiple="multiple">
  3.             <option value="engine-oil-change">Engine Oil Change</option>
  4.             <option value="ac-service">AC Service</option>
  5.             <option value="wheel-alignment">Wheel Alignment</option>
  6.             <option value="normal-service">Normal Service</option>
  7.             <option value="body-washing">Body Washing</option>
  8.           </select>
  9.  
processController.php

Expand|Select|Wrap|Line Numbers
  1. $service = implode(',', $_POST['services']);
Feb 5 '20 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

7
by: RotterdamStudents | last post by:
Hello there, i have a strange problem. I can't get php to insert multiple rows at once in a MySQL database. I use the $sql = "INSERT INTO database (a,b,c,d,e) VALUES ('$a', '$b' ,'$c', '$d',...
8
by: Sans Spam | last post by:
Greetings! I have a table that contains all of the function permissions within a given application. These functions are different sections of a site and each has its own permissions (READ, WRITE,...
5
by: SSP | last post by:
Dear ASP.NETers, How would I insert multiple rows of data from a web form? Are there any tute's and stuff around. Couldn't find any myself. Thanks in advance. SSP
5
by: afandi | last post by:
Hi, Generally, it involves SQL statement such as follow INSERT INTO <tablename>(field1,field2,.......fieldn) VALUES ('abc','def'...........) If I have data taken from Apache Server Log,let...
58
by: bonneylake | last post by:
Hey Everyone, Well recently i been inserting multiple fields for a section in my form called "serial". Well now i am trying to insert multiple fields for the not only the serial section but also...
1
by: Aruna Dalvi | last post by:
I'm using Vb.Net and odbc Server I have a Listbox that users can select multiple values. Selection Mode = Multiple. The multiple values are associated with one record. I need to insert into the...
3
by: ROXIT | last post by:
hello every one pls tell me how can i save multiple checkbox value into database. I have created one table into the database named Category_Table and another table named CategoryTitle. for e.x. ...
1
by: suadik | last post by:
Am trying to insert multiple fees into my database from a select option, but when I send, only one record is inserted which is the first selection. I also want it in such a way that when I insert,...
1
by: senakudo92 | last post by:
Hi All,I'm having problem with the frame, I try to insert the option button value which is on Frame 1 but it didn't store in database,it only store the value for Text1,Text2 and Text3. I'm new in...
7
by: priya555 | last post by:
<?php include("database.php"); $query2="select prodcode,prodname,id from product"; $result2=mysqli_query($con,$query2); echo"<table border='2' align='center' cellpadding='0'...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.