|
|
|
ajax ภาษาไทยอ่านไม่ออกครับ ผม save file ทั้งสอง เป็น utf-8 ส่วนอื่นแสดงเป็นภาษาไทยทั้งหมด |
|
|
|
|
|
|
|
ผมมี 2 ไฟล์ครับคือ searchhn.php and show_hn_aj.php
searchhn.php
Code (PHP)
<script language="javascript">
var objRequest = createRequestObject();
function createRequestObject() {
var objTemp = false;
if (window.XMLHttpRequest) {
objTemp = new XMLHttpRequest();
}
else if (window.ActiveXObject) {
objTemp = new ActiveXObject("Microsoft.XMLHTTP");
}
return objTemp;
}
function getData() {
if (objRequest) {
var pmeters = 'hn='+document.getElementById("hn").value;
objRequest.open("POST", "show_hn_aj.php");
objRequest.onreadystatechange = handleResponse;
objRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
objRequest.setRequestHeader("Content-length", pmeters.length);
objRequest.setRequestHeader("Connection", "close");
objRequest.send(pmeters);
}
}
function handleResponse() {
var objDiv = document.getElementById("targetDiv");
if (objRequest.readyState == 4 ) {
objDiv.innerHTML = objRequest.responseText;
}
}
</script>
<body>
<table border="0">
<tr><td>การพิมพ์ Label คนไข้ </td></tr>
<tr><td>Phrachomklao Hospital</td></tr>
</table>
<hr color="red" width ="200" align="left">
<table bgcolor="lightyellow">
<tr>
<td>ใส่ Hnคนไข้:
<input type="text" name="hn" id="hn" maxlength="7" style="width :60px">
<input type="button" value="ตกลง" onclick="getData()">
</td>
</tr>
</table>
<div id="targetDiv"></div>
</body>
</html>
show_hn_aj.php
Code (PHP)
<?php
include('_functions/phpFunction.php');
require('_connections/Connect.php');
$ladmit_n='';
$numc='';
if(isset($_POST['hn'])) {$hn=$_POST['hn'];} else {$hn='not data';}
$hn=string_Format($_POST['hn'],7);
$charset = "set names tis620";
$query="select I.ladmit_n,I.hn,I.admit_date,I.admit_time,I.sex,I.age,";
$query.="P.firstName + '' + P.lastName as fullname, W.ward_name,I.current_room ";
$query.="from Ipd_h I ,PATIENT P ,Ward W ";
$query.="where I.hn='$hn' and P.hn = I.hn ";
$query.="and I.discharge_status='0' and W.ward_id = I.ward_id ";
$query.=" and I.discharge_status='0'";
$rs=mssql_query($query,$link);
$resid=mssql_query($query);
$numc=mssql_num_rows($resid);
$row=mssql_fetch_array($rs);
if($numc==0)
{ echo"HN นี้ไม่ได้เป็นผู้ป่วยใน!!!";
exit();
}
mssql_free_result($rs);
?>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script language="javascript" src="_functions/JavaFunction.js"></script>
<style type="text/css">
</style></HEAD>
<FORM NAME="form1" method="post" action="frm_pang_test.php">
<table border="1" width="677" border="0">
<tr>
<td>Hn</td>
<td><?php echo $row['hn']?></td>
<td>An</td>
<td><?php echo $row['ladmit_n'];?></td>
</tr>
<tr>
<td>ชื่อ - สกุล</td>
<td><?php echo $row['fullname'];?></td>
<td>อายุ</td>
<td><?php echo $row['age']?> ปี</td>
</tr>
<tr>
<td>หอผู้ป่วย</td>
<td><?php echo $row['ward_name']?></td>
<td>ห้อง</td>
<td><?php echo $row['current_room']?></td>
</tr>
<tr>
<td>วันที่เข้า Admit</td>
<td><?php echo $row['admit_date']?></td>
<td>เวลา Admit</td>
<td><?php echo $row['admit_time']?></td>
</tr>
</table>
<table width="582" border="0">
<tr>
<td width="111"><div align="center">row</div></td>
<td width="194"><input type="text" name="row" id="row" onKeyPress="inputDate(self, this);"maxlength="2"style="width :50px" value ="1"> (1-10)</td>
<td width="95">column</td>
<td width="137">
<label></label><input type="text" name="col" id="col" onKeyPress="inputDate(self, this);"maxlength="2"style="width :50px" value ="1"> (1-3)</td>
<td width="23"> </td>
</tr>
</table>
<table width="582" border="0">
<tr>
<td width="228">จำนวนที่ต้องการพิมพ์</td>
<td width="344"><input type="text" name="total" id="total" onKeyPress="inputDate(self, this);"maxlength="2" style="width :50px" value="30" ></td>
</tr>
</table>
<table width="583" border="0">
<tr>
<td><div align="center">
<input type="submit" name="button" id="button" value="ตกลง">
</div></td>
</tr>
</table>
</form>
ผม save file ทั้งสอง เป็น utf-8
ส่วนอื่นแสดงเป็นภาษาไทยทั้งหมด เว้นแต่ตรงบรรทัด
<td><?php echo $row['fullname'];?></td>
ไม่แสดงเป็นไทย เป็นสี่เหลี่ยม ผมต้องแก้อย่างไรครับ
*** ฐานข้อมูลผมเป็น MSSQL ครับ*****
Tag : - - - -
|
|
|
|
|
|
Date :
2010-07-23 10:13:28 |
By :
nirut_i |
View :
2499 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เยอะจนไม่อยากจะตอบ(อันนี้เรื่องจริง)
|
|
|
|
|
Date :
2010-07-23 10:47:58 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|