I need to make a dynamic form using php, for example, i will need a list of items which when we select one option another list is modified ( like 2 lists of countries and citys from a dtabase ), and also a radio button wich once clicked we have a new list created on the same form. Thank you very much for your help
August 31, 2012 at 12:50 PM
continue..
2)state.php:
<? $country=intval($_GET['country']);
$link = mysql_connect('localhost', 'root', '');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('db_ajax');
$query="SELECT id,statename FROM state WHERE countryid='$country'";
$result=mysql_query($query);
?>
<select name="state" onchange="getCity(<?=$country?>,this.value)">
<option>Select State</option>
<? while($row=mysql_fetch_array($result)) { ?>
<option value=<?=$row['id']?>><?=$row['statename']?></option>
<? } ?>
</select>
3)city.php:
<? $countryId=intval($_GET['country']);
$stateId=intval($_GET['state']);
$link = mysql_connect('localhost', 'root', '');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('db_ajax');
$query="SELECT id,city FROM city WHERE countryid='$countryId' AND stateid='$stateId'";
$result=mysql_query($query);
?>
<select name="city">
<option>Select City</option>
<? while($row=mysql_fetch_array($result)) { ?>
<option value><?=$row['city']?></option>
<? } ?>
</select>
For the above code, you need to create following database tables.
CREATE TABLE `country` (
`id` tinyint(4) NOT NULL auto_increment,
`country` varchar(20) NOT NULL default '',
PRIMARY KEY (`id`)
) ;
CREATE TABLE `state` (
`id` tinyint(4) NOT NULL auto_increment,
`countryid` tinyint(4) NOT NULL,
`statename` varchar(40) NOT NULL,
PRIMARY KEY (`id`)
) ;
CREATE TABLE `city` (
`id` tinyint(4) NOT NULL auto_increment,
`city` varchar(50) default NULL,
`stateid` tinyint(4) default NULL,
`countryid` tinyint(4) NOT NULL,
PRIMARY KEY (`id`)
) ;
Related Tutorials/Questions & Answers:
Dynamic formDynamic form I need to make a
dynamic form using jsp for example, i will need a list of items which when we select one option another list... clicked we have a new list created on the same
form.
Thanks for your help
dynamic formdynamic form I need to make a
dynamic form using php, for example, i... button wich once clicked we have a new list created on the same
form. Thank you...);
}
}
</script>
<
form method="post" action="" name="form1">
<
Advertisements
Play framework dynamic form generationPlay framework
dynamic form generation I want to generate
dynamic forms using play framework can any one give me some idea about
dynamic form generation using play framework
form form Can I prevent a
form from being submitted again
dynamic reportdynamic report i need complete code for generating
dynamic report in jsp
dynamic polymorphismdynamic polymorphism Develop with suitable hierarchy, classes for Point, Shape, Rectangle, Square, Circle,
Ellipse, Triangle, Polygon, etc. Design a simple test application to demonstrate
dynamic polymorphism
Dynamic keywordDynamic keyword hi.......
What is the
dynamic keyword used for in flex?
give me the answer ASAP
Thanks Ans:
Dynamic keyword-> Specifies that instances of a class may possess
dynamic properties added
dynamic select boxdynamic select box hello friends i created a
form and details of city & locations have to be come from database. if city hyderabad chosen then locations of hyderabad only appear in location selectbox.plz send code it is more
Form validationForm validation Hi Everyone
Can someone assist me with a complete code to validate a
form. e.g where the user must insert an ID number it should... be a
dynamic function code e.g validate.js that I can link it to my jsp page.
Your
dynamic polymorphismdynamic polymorphism give an example for
dynamic polymorphism?
Dynamic polymorphism is where a class overrides a superclass method... seen at runtime, so they are considered
dynamic.
Here is an example
Dynamic tabs in struts 1.2Dynamic tabs in struts 1.2 I want to build two tabs in my page using....
This jsp has an Action and
Form .. when a tab is clicked it executes the action wherein the
form and jsp starts.
My page has header, body( and a leftmenu inside body
dynamic textfieldsdynamic textfields Hi,
I am a fresher and joined recently in one company. they gave me a desktop application project using swings.here is my detailed spec Screen 1 - The user enters the ingredients from a food product, saves
dynamic calenderdynamic calender hi
i need the code to "insert date using GUI"
Hi Friend,
Try the following code:ADS_TO_REPLACE_1
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class DatePicker{
int month
dynamic display - JSP-Servletdynamic display hi,
i want to display
dynamic values in drop drown box in a jsp page.these values are in the
form of arraylist's object which came
form another servlet or bussiness logic after being validated
dynamic querydynamic query DECLARE
QUERY VARCHAR2(32767);
FIN_QUERY VARCHAR2(32767);
CURSOR C IS
(select distinct PORTFOLIO from MPE_TEST1);
CURSOR C2 IS
SELECT DISTINCT PORTFOLIO_LEVEL, PORTFOLIO FROM MPE_TEST1 ORDER
Dynamic check box problemDynamic check box problem In my project i have used a
dynamic table... dynamically]. Now my problem is that i can't access those values from that
dynamic...:
<%@ page import="java.sql.*" %>
<html>
<
form name="
form ModuleNotFoundError: No module named 'dynamic'ModuleNotFoundError: No module named '
dynamic' Hi,
My Python... '
dynamic'
How to remove the ModuleNotFoundError: No module named '
dynamic... to install padas library.
You can install
dynamic python with following command
ModuleNotFoundError: No module named 'dynamic'ModuleNotFoundError: No module named '
dynamic' Hi,
My Python... '
dynamic'
How to remove the ModuleNotFoundError: No module named '
dynamic... to install padas library.
You can install
dynamic python with following command
form validationform validation how the
form validation is done in jsf
form using javaScript
Dynamic Array iPhoneDynamic Array iPhone
Dynamic Array iPhone
How can i add NSMutable array dynamically into my iPhone App
Dynamic polymorphism - Java BeginnersDynamic polymorphism Develop with suitable hierarchy, classes for point, shape, rectangele, square, circle,ellipse, triangle, polygon, etc. Design a simple test application to demonstrate
dynamic polymorphism..
Thanks
Dynamic Polymorphism - Java BeginnersDynamic Polymorphism Develop with suitable hierarchy, classes for Point, Shape, Rectangle, Square, Circle,
Ellipse, Triangle, Polygon, etc. Design a simple test application to demonstrate
dynamic polymorphism.?
Thanks
print a form of *print a
form of * *
***
*****
*******
*********
*******
*****
***
*
Post the format properly
Dynamic html examplesDynamic html examples Hi,
What is
Dynamic HTML? Explain with
dynamic html examples.
Thanks
(adsbygoogle = window.adsbygoogle || []).push({});
Hi,
DHTML stands for
Dynamic HTML and is uses the HTML
Multipage formMultipage form I have a multipage
form in php with 2 pages wnhen i submit the
form data from both the
pages should go in database how should i pass teh data from 1st page to 2nd page and then put the entire
form data in mysql
jsp formjsp form hi sir,
one got one got in jsp
form after entering the data into the
form the data is not saving in the database i will send you code of two forms if dnt understand my problem
submit a formsubmit a form How can we submit a
form without a submit button
Dynamic-update not working in Hibernate.Dynamic-update not working in Hibernate. Why is
dynamic update not working in hibernate?
Dynamic-update is not working. It means when you are running your update, new data is added in your table in place
Dynamic pages - StrutsDynamic pages I want to recreate a page on click and then enter data in my database via struts1.1 please help me what can i use or what help i can get from