|
|
|
list menu ให้เรียงตามชื่อที่เรียกออกมา จากกฐานข้อมูล ยังไงค่ะ มีรูปค่ะ |
|
|
|
|
|
|
|
list menu ให้เรียงตามชื่อที่เรียกออกมา จากกานข้อมูล ยังไงค่ะ
-----------------------------
----------------------------------------------------------
----------------------------------------------------------
-----------------------------
Code (PHP)
<?
include("config.inc.php") ;
// เริ่มติดต่อฐานข้อมูล
mysql_connect($hostname, $user, $password) or die("ติดต่อฐานข้อมูลไม่ได้");
// เลือกฐานข้อมูล
mysql_select_db($dbname) or die("เลือกฐานข้อมูลไม่ได้");
mysql_query("SET NAMES 'tis620'");
$tblname='tb_job';
$result = mysql_query("select * from $tblname where job_code='$job_code'") or die ("Err Can not to result") ;
$dbarr = mysql_fetch_array($result) ;
?>
<head>
<title>ระบบคลินิกทันตกรรม</title>
<style type="text/css">
<!--
BODY {font-family:;font-size="10"}
A:link {text-decoration: none; color: blue }
A:visited {text-decoration: none; color: blue }
A:hover {text-decoration: none; color: darkorange }
A:active {text-decoration: none; color: blue }
p, div, td, ul li, ol li { font-family: MS Sans Serif, Microsoft Sans Serif; font-size: 10pt }
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
</head>
<body bgcolor=#FFFFFF>
<tr>
<p> </p>
<form name="checkForm" action="job_edit_add.php" method="post" onSubmit="return check2();">
<CENTER><table width="42%" border="1">
<tr>
<td width="20%"><font size="2" face="MS Sans Serif, Tahoma, sans-serif"> วันที่เปิดงาน</td>
<td width="50%"><?php echo $dbarr['job_day'] ; ?></td>
</tr>
<tr>
<td width="20%"><font size="2" face="MS Sans Serif, Tahoma, sans-serif"> รหัสเปิดงาน</td>
<td width="50%"><?php echo $dbarr['job_code'] ; ?></td>
</tr>
<tr>
<td width="20%"><font size="2" face="MS Sans Serif, Tahoma, sans-serif"> สถานะงาน(Open/Close)</td>
<td width="50%"><?php echo $dbarr['job_status'] ; ?></td>
</tr>
<tr>
<td bgcolor="#666666">ข้อมูลผู้ป่วย</td>
<td bgcolor="#666666"></td>
</tr>
<tr>
<td>รหัสผู้ป่วย</td>
<td bgcolor="#FFFFFF"><?php echo $dbarr['pt_code'] ; ?></td>
</tr>
<tr>
<td>ชื่อ ผู้ป่วย</td>
<td bgcolor="#FFFFFF"><?php echo $dbarr['pt_name'] ; ?></td>
</tr>
<tr>
<td>นามสกุล ผู้ป่วย</td>
<td bgcolor="#FFFFFF"><?php echo $dbarr['pt_sname'] ; ?></td>
</tr>
<tr>
<td bgcolor="#666666">ข้อมูลทันตแพทย์ ผู้รับผิดชอบ</td>
<td bgcolor="#666666"></td>
</tr>
<td>รหัสทันตแพทย์</td>
<td bgcolor="#FFFFFF"><?php echo $dbarr['dc_code'] ; ?></td>
</tr>
<tr>
<td>ชื่อ ทันตแพทย์</td>
<td bgcolor="#FFFFFF"><?php echo $dbarr['dc_name'] ; ?></td>
</tr>
<tr>
<td>นามสกุล ทันตแพทย์</td>
<td bgcolor="#FFFFFF"><?php echo $dbarr['dc_sname'] ; ?></td>
</tr>
<tr>
<td bgcolor="#666666">แก้ไขเป็น</td>
<td bgcolor="#666666"></td>
</tr>
<tr>
<td width="20%">ผู้ป่วย</td>
<td>
<select name="pt_code">
<?
include("config.inc.php");
$connection=mysql_connect($host,$user,$password) or die("เชื่อมต่อฐานข้อมูลไม่ได้");
mysql_select_db($dbname) or die("ไม่สามารถเลือกฐานข้อมูลได้");
mysql_query("SET NAMES 'tis620'");
$sql="select * from tb_user where user_status='pt'";
$dbquery=mysql_db_query($dbname,$sql);
while($result=mysql_fetch_array($dbquery)){
if($user_code == $result[user_code]){ //เพื่อให้ แสดง $cat_id ที่ส่งค่ามาให้
?>
<option value="<?=$result[user_code];?>" selected="selected"><?=$dbarr['pt_code'];?>(<?=$result[user_name];?> <?=$result[user_sname];?>)</option>
<?
}else{?>
<option value="<?=$result[user_code];?>"><?=$result['user_code'];?>(<?=$result[user_name];?> <?=$result[user_sname];?>)</option>
<?
} }
?>
</td>
<tr>
<td width="20%">ทันตแพทย์</td>
<td>
<select name="dc_code">
<?
include("config.inc.php");
$connection=mysql_connect($host,$user,$password) or die("เชื่อมต่อฐานข้อมูลไม่ได้");
mysql_select_db($dbname) or die("ไม่สามารถเลือกฐานข้อมูลได้");
mysql_query("SET NAMES 'tis620'");
$sql="select * from tb_user where user_status='dc'";
$dbquery=mysql_db_query($dbname,$sql);
while($result=mysql_fetch_array($dbquery)){
if($user_code == $result[user_code]){ //เพื่อให้ แสดง $cat_id ที่ส่งค่ามาให้
?>
<option value="<?=$result[user_code];?>" selected="selected"><?=$dbarr['dc_code'];?>(<?=$result[user_name];?> <?=$result[user_sname];?>)</option>
<?
}else{?>
<option value="<?=$result[user_code];?>"><?=$result['user_code'];?>(<?=$result[user_name];?> <?=$result[user_sname];?>)</option>
<?
} }
?>
</CENTER>
<input type="hidden" name="job_code" value="<?php echo $dbarr['job_code'] ; ?>">
<tr bgcolor="#FFF2FF">
<td colspan="2">
<div align="center">
<input type="submit" name="Submit" value="Update">
</div></td>
</form>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-02-24 03:48:55 |
By :
Ninezy |
View :
911 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.ใช้ order by ไม่ได้เหรอค่ะ
|
|
|
|
|
Date :
2010-02-24 07:12:05 |
By :
ningning |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ้างอิง บรรทัด ที่ 121
เปลี่ยนจาก
while($result=mysql_fetch_array($dbquery)){
if($user_code == $result['user_code']){ //เพื่อให้ แสดง $cat_id ที่ส่งค่ามาให้
?>
<option value="<?=$result[user_code];?>" selected="selected"><?=$dbarr['dc_code'];?>(<?=$result['user_name'];?> <?=$result['user_sname'];?>)</option>
<?
}else{?>
<option value="<?=$result['user_code'];?>"><?=$result['user_code'];?>(<?=$result['user_name'];?> <?=$result['user_sname'];?>)</option>
<?
} }
?>
เป็น
while($result=mysql_fetch_array($dbquery)){
if($dbarr['dc_code']== $result['user_code']){ //เอารหัสของหมอ ที่เข้าใจว่า ได้ถูกเก็บไว้ในตารางคนไข้ มาเปรียบเทียบกับ ตารางซึ่งเข้าใจว่า น่าจะเก็บประวัติหมอ มาเปรียบเทียบกัน
?>
<option value="<?=$result['user_code'];?>" selected><?=$result['user_code'];?>(<?=$result['user_name'];?> <?=$result[user_sname];?>)</option>
<?
}else{?>
<option value="<?=$result[user_code];?>"><?=$result['user_code'];?>(<?=$result['user_name'];?> <?=$result[user_sname];?>)</option>
<?
} }
?>
ถ้าผมเข้าใจถูกนะ 555+
|
|
|
|
|
Date :
2010-02-24 08:03:23 |
By :
kalamell |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ คุณ ning และ คุณ U มากค่ะ
ใช้แบบของคุณ U ใช้ได้เลยค่ะ ^_^
|
|
|
|
|
Date :
2010-02-24 12:30:02 |
By :
Ninezy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|