|
|
|
รบกวนดูโค้ดการเช็คค่า listmenu ตัวที่ 2 ให้หน่อยค่ะ |
|
|
|
|
|
|
|
รบกวนดูโค้ดให้หน่อยค่ะ มี listmenu 2 ชั้น ใช้ Ajax เขียนนะคะ คือเลือก listmenu ตัวที่ 1 แล้ว listmenu ตัวที่ 2 ก็จะขึ้นข้อมูลที่เกี่ยวกับตัวแรกนะคะ แต่ปัญหาอยู่ที่ว่าต้องการที่จะเช็คว่าถ้าไม่เลือก listmenu ตัวที่ 2 หรือเลือกเป็นอำเภอ ก็จะต้องมีข้อความแจ้งเตือนขึ้นมานะคะ ตอนกด submit ค่ะ listmenu ตัวแรกเช็คได้แล้วนะคะ
province.php
Code (PHP)
<!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=windows-874" />
<title>Untitled Document</title>
</head>
<script>
var xmlHttp = false;
function createXMLHttpRequest() {
var xmlHttp = false;
try{
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
}catch(e){
try{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}catch(e){
xmlHttp = false;
}
}
if(!xmlHttp && document.createElement){
xmlHttp = new XMLHttpRequest();
if (xmlHttp.overrideMimeType) {
// set type accordingly to anticipated content type
//http_request.overrideMimeType('text/xml');
xmlHttp.overrideMimeType('text/html');
}
}
if (!xmlHttp) {
alert('Cannot create XMLHTTP instance');
return false;
} else{
return xmlHttp;
}
/*if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}*/
}
function list_namesub(id) {
var obj = document.getElementById("county");
var obj_default = '- อำเภอ-';
if(id ==""){
while(obj.childNodes.length>0){obj.removeChild(obj.childNodes[0]);}
obj[0] = new Option(obj_default,'');
}else{
var url = "get_subprovince.php?id=" + id;
xmlHttp=createXMLHttpRequest();
xmlHttp.onreadystatechange = handleStateChange;
xmlHttp.open("GET", url, true);
xmlHttp.send(null);
function handleStateChange() {
if(xmlHttp.readyState == 4) {
if(xmlHttp.status == 200) {
var results = xmlHttp.responseText;
while(obj.childNodes.length>0){obj.removeChild(obj.childNodes[0]);}
arr_list=results.split("/");
if(arr_list.length-1!=0){
for (var i=0; i < eval(arr_list.length-1); i++) {
shop_arr=arr_list[i].split(",");
obj.options[i] = new Option(shop_arr[0],shop_arr[1]);
}}else{
while(obj.childNodes.length>0){obj.removeChild(obj.childNodes[0]);}
obj[0] = new Option(obj_default,'');
}
}
}
}
}
}
function chkinp(form){
if(form.province.value=="")
{
alert("กรุณาเลือกจังหวัดด้วยค่ะ")
form.province.focus();
return false;
}
}
</script>
<body>
<form id="form" name="form" method="post" action="" onsubmit="return chkinp(this)">
<tr>
<td width="30%" align="right" class="text13" valign="top">Artist :</td>
<td><select name="province" id="province" onChange="list_namesub(this.value);" >
<option value="">-จังหวัด-</option>
<?
$host="localhost"; //ชื่อ Host
$user="root"; //ชื่อ user
$password="root"; //รหัสผ่านฐานข้อมูล
$dbname="test";
$connection=mysql_connect($host,$user,$password) or die("เชื่อมต่อฐานข้อมูลไม่ได้");
mysql_select_db($dbname) or die("ไม่สามารถเลือกฐานข้อมูลได้");
mysql_query("SET NAMES TIS620");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
mysql_query("collation_connection =tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$sql="select id,name from province where status ='Active' order by name_en ASC";
$dbquery=mysql_db_query($dbname,$sql);
while($result=mysql_fetch_array($dbquery)){
$id=$result['id'];
$name=$result['name'];
print "<option value=$id>$name</option>";
}
?>
</select>
</td>
</tr>
<tr>
<td width="30%" align="right" class="text13" valign="top">County :</td>
<td><select name="county" id="county">
<option value="">-อำเภอ-</option>
</select>
<label>
<input type="submit" name="Submit" value="Submit" />
</label></td>
</tr>
</form>
</body>
</html>
get_subprovince.php
Code (PHP)
<?php
header("Content-Type: text/plain; charset=TIS-620");
$host="localhost";
$user="root";
$password="root";
$dbname="test";
$connection=mysql_connect($host,$user,$password) or die("เชื่อมต่อฐานข้อมูลไม่ได้");
mysql_select_db($dbname) or die("ไม่สามารถเลือกฐานข้อมูลได้");
mysql_query("SET NAMES TIS620");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
mysql_query("collation_connection =tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
//$sql="select artist_id,album_id from artistalbum where artist_id = '$id'";
$sql="SELECT Aa.artist_id, Aa.album_id, A.name_en, A.name_th FROM ArtistAlbum Aa JOIN Album A ON Aa.album_id = A.id WHERE artist_id = '$id'";
$dbquery = mysql_db_query($dbname, $sql);
echo "-อำเภอ -, /";
while ($result = mysql_fetch_array($dbquery)){
echo"$result[name_en]::$result[name_th],$result[album_id]/";
}
mysql_close($connection);
?>
Tag : PHP, MySQL, JavaScript
|
|
|
|
|
|
Date :
2010-10-14 17:43:00 |
By :
koy |
View :
831 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ของเดิม
$sql="SELECT Aa.artist_id, Aa.album_id, A.name_en, A.name_th FROM ArtistAlbum as Aa JOIN Album as A ON Aa.album_id = A.id WHERE artist_id = '$id'";
แก้เป็น
$sql="SELECT Aa.artist_id, Aa.album_id, A.name_en, A.name_th FROM ArtistAlbum as Aa JOIN Album as A ON Aa.album_id = A.id WHERE Aa.artist_id = '$id'";
|
|
|
|
|
Date :
2010-10-20 10:38:55 |
By :
ชินอิจิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมแนะนำตามที่ถามว่าให้ช็ค ลิสเมนูตัวที่ 2 นะครับส่วนเรื่องดึงข้อมูลอำเภอมาแสดงคิดว่าน่าจะทำได้
เพิ่ม <script type="text/javascript" src="js/jquery.js"></script> ไว้ที่<head>
แก้บันทัด 74-81 เป็น
Code (JavaScript)
function chkinp(){
if($("province").val()=="")
{
alert("กรุณาเลือกจังหวัดด้วยค่ะ")
$("province").focus();
return false;
}else if($("county").val()=="")
{
alert("กรุณาเลือกอำเภอด้วยค่ะ")
$("county").focus();
return false;
}else{return true;}
}
แก้บันทัด 84 เป็น
<form id="form" name="form" method="post" action="" onsubmit="return chkinp()">
แก้บันทัด 144-123 เป็น
<tr>
<td width="30%" align="right" class="text13" valign="top">County :</td>
<td>
<span id='showCounty'>
<select name="county" id="county">
<option value="">-อำเภอ-</option>
</select>
</span>
<label>
<input type="submit" name="Submit" value="Submit" />
</label></td>
</tr>
|
|
|
|
|
Date :
2010-10-20 11:06:11 |
By :
ชินอิจิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตกตรง js ไปนิดนึง $("#province") กับ $("#county")
|
|
|
|
|
Date :
2010-10-20 11:08:13 |
By :
ชินอิจิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|