选择区域时,PHP会从数据库填充数据

时间:2012-07-24 06:33:47

标签: php javascript mysql database

请关注此帖子,请查看我的以下帖子  Chained multiple selects

我有这个代码,用户选择特定类别的医生,然后选择他想要查看的区域。状态后,他需要点击电台(在选定的区) 医生>>区>>站

Here is the code 
<html>
<body>
<form action="process.php" method="post">
<select name="cat">
<?php
$sql="select distinct Category from doctors order by Category asc";
$query=mysql_query($sql);

while($row=mysql_fetch_array($query))
{
echo "<option value='{$row[Category]}'>{$row[Category]}</option>";
}
?>
</select>
<select name="station">
<?php
$sql_1="select distinct Station from doctors order by Station asc";
$query_1=mysql_query($sql_1);

while($row=mysql_fetch_array($query_1))
{

echo "<option value=".$row[Station].">".$row[Station]."</option>";
}
?>
</select>
<input name="C" type="submit" />
</form>
</body>
</html>

Process.php

$mySqlStm ="SELECT Name FROM doctors WHERE Category='$myValue' and Station='$myStation'";

$result2 = mysql_query($mySqlStm) or die("Error:mysql_error()"); 

if(mysql_num_rows($result2) == 0){ 
echo("<br/>no records found"); 
} 
ELSE 
{ 
echo "<table border='1'>"; 

//ECHO THE RECORDS FETCHED
while($row = mysql_fetch_array($result2)) 
{ 
echo "<tr>"; 
//echo "<td>" . $row['Station'] . "</td>"; 
echo "<td>" . $row['Name'] . "</td>" ; 
//echo "<td>" . $row['Phone 1'] . "</td>"; 
//echo "<td>" . $row['Mobile'] . "</td>"; 

}

我希望在选择区时自动填写电台类别,当选择医生类别时,必须自动填写区。

我该怎么办?我更喜欢Javascript,因为我对此有所了解。 此外,我将所有数据都放在一个数据库中,看起来像这样

类别|车站|区|名称|资格等等

3 个答案:

答案 0 :(得分:1)

Ajax + jQuery将在几行代码中为您完成。

此处的教程:Ajax+jQuery Tutorial

答案 1 :(得分:0)

州和城市的Ajax

从这里你可以得到医生名单的想法

Please check it once this is good example

答案 2 :(得分:0)

国家,州和城市的演示是here

代码为Here

按自己的方式自定义..

您可以将findCity.php中的代码更改为Process.php和js / location.js 你有:

$.ajax({
    type: "GET",
    url: "findCity.php",
    data: strURL,
    cache: false,
    success: function(d){
    $('#citydiv').show().html(d);
    }
});

#citydiv是将更改为您在Process.php中获得的结果的部分