0
votes
1answer
25 views

Store multidimensional array from JQuery Dropdown checklist in database in string form using loop

I want to store an array of checklist into a string in a database. Below this is the code in the interface which display a list of room with a dropdown checklist for each room. while($rows = ...
-3
votes
1answer
40 views

Currency Converter in php using mysql values [closed]

So I've attempted a few things, but I just can't get this to work. Here are two drop down lists, populated by the corresponding symbols from the database. <select id = "convert1" width="10"> ...
0
votes
4answers
84 views

PHP- Fetch from database and store in drop down menu html

I can't seem to get the following code to make a dropdown menu that contains data from a mysql database. The "include('connect.php');" connects to the mysql database and I know it works on separate ...
0
votes
1answer
20 views

PHP MySQL Insert from drop down menu

Just a quick question. I am sure it is not as complicated as I think. I have a page that has 4 drop down menus. These are all populated from a database which is MySQL. Upon a submission I would like ...
1
vote
0answers
33 views

PHP Drop Down Selected

i've got 3 drop down boxes which populate each drop down from the one above but on the 3rd drop down i want it to bring back a value that i selected. The code is below <tr> <td ...
-2
votes
1answer
47 views

Populate multiple dropdown lists with PHP

I have 3 dropdown lists to populate from sql database using PHP and javascript/ajax. First list starts with filled options, second list populates from database depending on selection. All this works ...
-2
votes
2answers
93 views

Inserting data to database from dropdown menu - PHP MYSQL [closed]

I have the following code in my addproduct.php which connects to doaddproduct.php after clicking a submit button: <tr> <td>Category Name</td> <td>:</td> <td> ...
0
votes
2answers
38 views

Show options on dropdown menu from a column - PHP MYSQL

I have a following code: <?php session_start(); include("control/connect.php"); $query = NULL; $query= "select * from category"; $result = mysql_query($query); ?> ...
2
votes
3answers
49 views

Avoid repeating records displaying in MySQL / PHP

This is a very basic PHP MySQL question that I need answered. When displaying data from a table, I need to avoid/prevent duplicates. I am trying to populate a drop down menu with a list of countries ...
0
votes
4answers
132 views

Updating one drop down menu according to option selected in another drop down menu from database

EDITED AFTER SUGGESTIONS (STILL UNRESOLVED): I have 2 drop down menu's, one called Country, and the other called City. When the user chooses a country from the Country drop down menu (hereafter a ...
-1
votes
1answer
56 views

Javascript for 3 dynamic drop down

I'm working on a make model year car database and I have the following form that selects model based on make. <? $hostname = ""; $database = ""; $username = ""; $password = ""; ...
0
votes
1answer
48 views

How to populate one drop down with another using ajx, php and html

i want to populate a dropdownlist based on an input from another using ajax. But have head a deadend and can't figure out the problem. It uses company names to open up a dropdown list of mobile phone ...
0
votes
0answers
62 views

How to use javascript to do a drop down menu on mysql column in a HTML text field?

I would like to create a javascript drop down menu in a text field in HTML, using an MySQL query. This is my query select distinct `Column_Name` from `Table_Name` limit 0,66; I'd like to have a ...
1
vote
2answers
181 views

How do i populate a dropdown list by selecting the value from another dropdown list?

I have been trying to populate the contents of one drop down list with the selection of an item in another, using php,html and mysql database and Its proved to be a lot harder than i thought for me. ...
0
votes
3answers
102 views

Dynamic DropDownList works but how to get value? PHP

Hi I have the following code: $dropdown = "<select name='test'>"; while($row = mysql_fetch_assoc($result)) { $dropdown .= "\r\n<option ...
0
votes
1answer
73 views

Dynamic dropdown list to fill in fields

I am creating a contact system and have a function i want to implement and not sure how. I am using this tutorial to create it, basically I have a client table and a contact table, I create a client ...
0
votes
1answer
54 views

Population a dropdown list with PHP without duplicates

I am trying to embed a drop down list to an update page, it works fine but I am having problems with option selected part. When an option is shown it also duplicates it in the list. Is there any way I ...
0
votes
2answers
42 views

querying WITH a $variable

ive been trying all kinds of things and for some reason no matter what i do i cannot seem to query with a avriable... so far, here is my code, its not all of it, but ive pin pointed where my problem ...
0
votes
3answers
121 views

Passing value from a dropdown list from one php to another

I have A dropdown list populated from a MySQL table. A button. Another php page What I need to do: On clicking the button, pass the value selected from the dropdown list as a variable to second ...
0
votes
0answers
24 views

error with dynamic drop list

i am creating a dynamic drop list that the second is based on the selection of the first and the third is based on the selection of the second using php mysql ajax jquery but the problem is that ...
0
votes
1answer
148 views

php mysql 3 dynamic drop list with ajax jquery

i am creating dynamic drop list using php mysql + ajax jquery that the populate of second drop list is based on the selection of the first and third is based on the selection of the second but it ...
0
votes
2answers
137 views

php mysql + ajax and jquery to dpopulate dynamic drop list

i am creating 2 dynamic drop list that the second one is based on the selection of the first but the problem is that the second one do not populate and i do not know where is the error can anyone ...
0
votes
1answer
108 views

creating dynamic droplist with ajax jquery php mysql

i am creating a simple dynamic drop list that the populate of the second one is based on the selection of the first one but the problem is that the first droplist do not populate anything so i ...
0
votes
1answer
67 views

php mysql + 3 dynamic droplist box

i am creating three dynamic drop list that the second is based on the selection of the first and the third is based on the selection of the second using php and mysql to retrieve data and javascript ...
0
votes
0answers
62 views

php mysql + dynamic drop list

i am creating 3 dynamic drop list that the populate of the second is based on the selection of the first and the third is based on the selection of the second. what i get is that the php display ...
-1
votes
1answer
97 views

Jquery, CSS three tiered menu populated by MYSQL, PHP

Hi I'm trying to create a 3 tiered menu system, just a standard; <ul> <li></li> <li> <ul> <li></li> ...
0
votes
2answers
403 views

php mysql populate several dynamic dropdown list

i am creating 3 drop down list that is based on the selection of each other so the first selection i normal but the second is dependent on the first selection and the third is dependent on the second ...
0
votes
1answer
179 views

cascading dropdowns from mysql with javascript and php

EDIT: Solution at the bottom of this first entry. I've been scouring SO for a good day or two now and am not having any luck coming up with getting my dynamic drop downs working. I have a form. The ...
0
votes
2answers
267 views

filter data to show using dropdown option in php

I try to show some data by dropdown option from mySQL when the user choose option United states and click submit, the page will go to the next page and show the data only for United states here is ...
0
votes
1answer
372 views

Dropdown population using jquery to get data from codeigniter controller

I want to populate a dropdown using jquery and ajax. my jquery call is <script> $(document).ready(function(){ $.ajax({ type: "GET", ...
0
votes
0answers
143 views

get a dropdown list from value of another dropdown list

I have code of the based on PHP, MySQL where i have to get one drop-down list from value of another drop-down list JAVASCRIPT: <script type="text/javascript"> function state_filter(c_id) { ...
0
votes
3answers
106 views

Pulling multiple fields from database using forms and php

I have a database with multiple rows with various fields. I have a form that contains a drop down list. The drop down list displays one of the database fields (field_name) for each row in the ...
0
votes
2answers
523 views

Need help storing check box, radio button, and drop down menu data in mysql

I am trying to have my form data stored in a mysql database. I want everything that the user types or clicks to be stored there. I am able to have my text fields stored in mysql successfully. I am ...
0
votes
1answer
825 views

php and mysql - Send checkbox, radio button, and drop down menu results from user to mysql database and store it there

I am trying to have my form data stored in a mysql database. I want everything that the user types or clicks to be stored there. I am able to have my text fields stored in mysql successfully. I am ...
0
votes
3answers
85 views

PHP Drop down box from MySQL query option definition

I have been trying to decipher the option part of this: echo "<option value='" . $row['PcID'] . "'>" . $row['PcID'] . "</option>"; taken from Populate a Drop down box..... can someone ...
0
votes
1answer
71 views

How to show price in drop down list using php and mysql

I'm trying to show the price in the drop down list from the following code, however it is showing the product name and not the price: <?php ...
0
votes
1answer
84 views

populate multiple drop down list

i have 3 table in database that must be displayed in 3 drop list using php and mysql but these three table go like this user select from the first one then the second drop list will display data ...
0
votes
1answer
73 views

php mysql select query

i have multiple drop list box that contain data from the database so i want to select the second drop list based on the section of the first one the first table have these three fields ...
-4
votes
1answer
494 views

storing the selected value from drop down list to a variable in php

I have populated a drop down list using values from a database in my web page. I use MySQL database and PHP for coding and HTML for design. Now, if I select a value from the drop down list and submit ...
-6
votes
1answer
33 views

Javascript Input show rates [closed]

I am looking for a solution like the input country rates search on http://www.rebtel.com/ . When entered a country name to show the rates of that country like on the example website, the rates should ...
0
votes
0answers
173 views

Multiple html dropdown displaying only 1 selected row (2 in db)

I have a list of users and a list of followers in the db. I can save multiple followers, but when it comes to reading / updating the list of followers, I only see one selected. Any assistance would be ...
1
vote
1answer
120 views

Ignore empty values from multipe dropdown lists in PHP/MySQL

I am working on a form that has 19 different drop down lists. Each list has the same 39 options in it. I'd like users to be able to select options in one or more of the lists and ignore the others. ...
0
votes
3answers
76 views

One select does not post the selected option

Example... this query is displayed even though the ">" Greater Than option was selected SELECT * FROM sr_rounds WHERE cir1 LIKE '%2.4%' ORDER BY sr_id asc Any ideas? <form ...
1
vote
2answers
468 views

Multiple dropdown values to create SQL query PHP

I am currently tring to create a form wherein there is three dropdown option boxes and one submit button. All three of the dropdown boxes are populated from the database and I would like the selected ...
-1
votes
1answer
1k views

ajax php drop down list [closed]

Can some one tell me what's wrong with this example code on this site ...
0
votes
3answers
366 views

how can i get countries states list from states table ,when i select country from countries table using multiple selection dropdown?

how to get countries states list from states table when i select country from countries table using multiple selection dropdown list ? here is my coding. mysql tables CREATE TABLE `countries` ( ...
0
votes
0answers
48 views

php + mysql + search in database [duplicate]

I am creating a form that contain a drop list that allows the user to choose a country, and based on his selection it will display the data related to this country. The problem is that no info is ...
0
votes
0answers
298 views

php + mysql + search query

i am creating a search form that will allow users to select from a drop list a country or a name than the system will search in the database and select the appropriate info and display it on the ...
0
votes
2answers
91 views

ECHO No error but not displaying data from MYSQL

echo 'DESCRIPTION: '.$row['DESCRIPTION']; in the code below is not displaying at all...It runs the first statement but the second one doesn't seem to be executing. I don't understand why. I'm not ...
0
votes
2answers
69 views

Output Dropdowlist to TPL file

I have some PHP code that works fine as is. However I want to output the Dropdownlist to my TPL file. How can I do this? <?php mysql_connect("$host", "$username", "$password")or die("cannot ...

1 2 3 4 5 6