I need help with a dynamic drop down menu. I need when I select a make. the corresponding model load in the second drop down menu
<?php
$conn=odbc_connect("cisproject","" ,"");// database connection
$make = $_POST['manuf_name'];
if ($make){
/////////////////////////////////////////////////
$query = sprintf("SELECT * FROM Models where manufacture_id='$make'");
$result = @mysql_query($query);
$rowModel = mysql_fetch_array($result);
/////////////////////////////////////////////////
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="drop.php" >
<select name="make" onChange="document.forms[0].submit()">
<option value="">Select Make</option>
<option value="1" <?php if(!(strcmp(1, $make))){echo "selected";}?>>LEXUS</option>
<option value="2" <?php if(!(strcmp(2, $make))){echo "selected";}?>>TOYOTA</option>
</select>
<select name="model">
<option value="">Select Model</option>
<?php do { ?>
<option value="<?php echo $rowModel['manufactures_id']; ?>"><?php echo $rowModel['model_name']; ?></option>
<?php }while ($rowModel = mysql_fetch_array($result)); ?>
</select>
</form>
</body>
</html>
I wrote this code could someone correct it for me
pls
Thank you