|
|
|
ส่งข้อมูลไปทางลิ้ง มันไม่แสดงเป็นภาษาไทย ทำไงครับ งง |
|
|
|
|
|
|
|
กดProjectที่เป็นภาษาอังกฤษ โชว์ได้ แต่ส่งเป็นภาษาไทยไม่โชว์อะครับ ช่วยหน่อยนะครับมันผิดตรงไหน เป็นเฉพาะกับ IE อะครับ
หน้าที่ส่ง
Code (PHP)
<?php
$hostname_connection = "localhost";
$database_connection = "T_data";
$username_connection = "root";
$password_connection = "1234";
$connection = mysql_pconnect($hostname_connection, $username_connection, $password_connection) or trigger_error(mysql_error(),E_USER_ERROR);
mysql_query("SET NAMES UTF8");
?>
<?
mysql_select_db($database_connection, $connection);
$query_rs_item = "SELECT * FROM project3 ORDER BY NO ASC";
$rs_item = mysql_query($query_rs_item, $connection) or die(mysql_error());
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<title>List</title>
</head>
<body><br/>
<input type="button" onClick="history.back()" value="Back" /> ย้อนกลับหน้าเดิม </br><center>เลือกดูคลิกที่ชื่อ"Project"</center>
<br /><br/><br/>
<form action="Vpro.php" method="post" name="form1" id="form1" target="_black">
<table width="1200" border="1" align="center" cellpadding="0" cellspacing="0" style="text-align:center;">
<tr bgcolor="#0099FF">
<th width="200"> <div align="center">Project </div></th>
<th width="200"> <div align="center">ชื่อลูกค้า </div></th>
<th width="200"> <div align="center">เจ้าของโครงการ </div></th>
<th width="80"> <div align="center">วันที่เริ่มโครงการ </div></th>
<th width="80"> <div align="center">วันที่สิ้นสุดโครงการ </div></th>
</tr>
<?php while($row_rs_item = mysql_fetch_assoc($rs_item)){ ?>
<tr>
<td><a href="beview.php?Pro=<?=$row_rs_item["Pro"];?>" target="_black"><?php echo $row_rs_item['Pro']; ?></td>
<td><?php echo $row_rs_item['Customer']; ?></td>
<td><?php echo $row_rs_item['Project_Owner']; ?></td>
<td><?php echo $row_rs_item['Start_Date']; ?></td>
<td><?php echo $row_rs_item['End_Date']; ?></td>
<?php } ?>
</tr>
</table>
</form>
</body>
</html>
หน้าแสดง
Code (PHP)
<html>
<head>
<title>oo</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<center>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
mysql_query("SET NAMES UTF8");
$objDB = mysql_select_db("T_data");
$strSQL = "SELECT * FROM project3 WHERE Pro = '".$_GET["Pro"]."'";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$objResult = mysql_fetch_array($objQuery);
$im = $objResult["NO"];
?>
</br></br><h1><b>Project :: <?=$objResult["Pro"];?></b></h1>
</br>
<form name="form1" method="post" action="editimdata.php?NO=<?=$im?>" enctype="multipart/form-data">
Diagram :</br>
<img src="location='../../../myfile/<?=$objResult["FilesName"];?>"></br></br>
Edit/Add : <input type="file" name="filUpload">
<input type="hidden" name="hdnOldFile" value="<?=$objResult["FilesName"];?>"><input name="btnSubmit" type="submit" value="GO Edit/Add">
</form>
<table width="600" border="1" align="center" cellpadding="0" cellspacing="0" style="text-align:center;">
<tr bgcolor="#0066FF" style=" color: #FFF;">
<th width="400"> <div align="center">ประเภท</div></th>
<th width="100"> <div align="center">จำนวน</div></th>
</tr>
<?
$strSQL2 = "SELECT site3.Project AS p,site3.Service AS name,COUNT(*) AS num FROM site3 WHERE Project = '".$_GET["Pro"]."' GROUP BY Service";
$objQuery2 = mysql_query($strSQL2) or die ("Error Query [".$strSQL2."]");
?>
<?
while ($rows = mysql_fetch_array($objQuery2)) {
$i++;
$p = $rows["p"];
$label_ser = $rows["name"];
$label_num = $rows["num"];
?>
<? if($i%2 != 0){?>
<tr bgcolor="#E9E9E9">
<? }?>
<? if($i%2 == 0){?>
<tr>
<? }
?>
<td><a href="Vpro.php?name=<?=$label_ser;?>&p=<?=$p;?>" target="_black"><?=$label_ser?></a>
</td>
<td><?=$label_num?></td>
</tr>
<?
}
?>
</table></center>
</center>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS
|
ประวัติการแก้ไข 2011-07-21 15:46:02 2011-07-21 16:24:22
|
|
|
|
|
Date :
2011-07-21 15:05:39 |
By :
dunlapat |
View :
1040 |
Reply :
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรง set names ลองเปลี่ยนเป็น SET NAMES tis620
<meta http-equiv="Content-Type" content="text/html; charset=tis620" />
ลองเปลี่ยนเป็น tis620 ให้หมดเลยครับน่าจะได้
|
|
|
|
|
Date :
2011-07-21 15:36:00 |
By :
amidamaru |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณนะครับตอนนี้ส่งข้อมูลแล้วแสดงแล้วครับ แต่ว่ามันเป็นภาษา �ç�ҹ���ٺ แทนที่จะเป็นไทย ทำไงอะครับ
|
|
|
|
|
Date :
2011-07-21 15:44:49 |
By :
dunlapat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองคลิกขวาที่ie แล้วเลือกencoding แล้วเปลี่ยนเป็นโหมด thai(windows)
|
|
|
|
|
Date :
2011-07-21 15:53:07 |
By :
amidamaru |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้อะครับ
|
|
|
|
|
Date :
2011-07-21 15:59:37 |
By :
dunlapat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ urlencode() กับ decode ครับ
|
|
|
|
|
Date :
2011-07-21 16:33:23 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษนะครับมันคืออะไรอะครับ urlencode() กับ decode อะครับ
|
|
|
|
|
Date :
2011-07-21 16:38:41 |
By :
dunlapat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ dreaweaver เขียนหรือป่าวครับ ถ้าใช้ ให้ไปที่ page properties.ที่อยู่ด้านล่างน่ะครับแล้วทำตามนี้ไปที่ title/encoding===>encoding===>thai(windows)
|
|
|
|
|
Date :
2011-07-21 16:39:24 |
By :
amidamaru |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ป่าวครับ edit plus
|
|
|
|
|
Date :
2011-07-21 16:45:17 |
By :
dunlapat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูนะ ถ้าเปง editplus ให้ไปที่ tool===>config user tools===>prefernces==>Font===>Tohoma===>Languageให้เปง thai
ประมาณนี้
|
|
|
|
|
Date :
2011-07-21 16:52:58 |
By :
amidamaru |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันไม่มีไทยให้เลือกอะครับ อันนี้คือทำอะไรหรอครับ ตอนนี้คือค่าที่ส่งกับค่าที่รับรู้สึกมันจะไม่ตรงกัน ภาษามันไม่ตรงกันอะครับ
|
|
|
|
|
Date :
2011-07-21 17:04:17 |
By :
dunlapat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
urldecode เหมือนพี่วินว่าคงได้แล้วมั้ง คงไม่เกี่ยวกับ file encoding หรอ เพราะที่เอามาแปะมันก็อ่านไทยได้ ที่มองไม่เป็นภาษาเพราะโดย encode ตอนส่ง
|
|
|
|
|
Date :
2011-07-21 17:08:11 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับขอบคุณมากเลยนะครับบ
|
|
|
|
|
Date :
2011-07-22 09:11:42 |
By :
dunlapat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|