|
|
|
ทำไมเวลา export ข้อมูลออกมาเป็น csv ข้อความถึงเป้นภาษาอะไรก้ไม่รู้ |
|
|
|
|
|
|
|
export จากที่ไหนยังไง ใช้ tool ตัวไหน ถ้าสั้นแบบนี้จบเลย บอกไม่ได้
|
|
|
|
|
Date :
2011-05-12 11:47:56 |
By :
naskw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สร้างหน้าค้นหามาค่ะ
Code (PHP)
<html>
<head>
<style type="text/css">
<!--
.style32 {font-family: Tahoma; font-size: 15px; }
-->
</style>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>TOT Wi-Fi</title>
</head>
<body>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="572" height="48" border="1">
<tr>
<th>คำค้น
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" value="ค้นหา"></th>
</tr>
</table>
</form>
<p>
<?
if($_GET["txtKeyword"] != "")
{
include("connect.php");
//$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
//$objDB = mysql_select_db("mydatabase");
// Search By Name or Email
$strSQL = "SELECT * FROM datamem LEFT JOIN dataacc ON (datamem.code = dataacc.code) WHERE ((name LIKE '%$_GET[txtKeyword]%') or (uname LIKE '%$_GET[txtKeyword]%'))";
//echo $strSQL;
//$strSQL = "SELECT * FROM datamem WHERE (code LIKE '%".$_GET["txtKeyword"]."%' or name LIKE '%".$_GET["txtKeyword"]."%' )";
$objQuery = mysql_query($strSQL);
//echo $objQuery;
?>
</p>
<table width="572" border="1" cellpadding="0" cellspacing="0">
<tr align="center">
<th width="80" height="28"><span class="style32">ชื่อ</span></th>
<th width="80"><span class="style32">นามสกุล</span></th>
<th width="80"><span class="style32">ชื่อผู้ใช้</span></th>
<th width="80"><span class="style32">รหัสผ่าน</span></th>
<th width="112"><span class="style32">วันที่</span></th>
<th width="100"><span class="style32">IP Address</span></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td height="36" align="center"><?=$objResult["name"];?></td>
<td align="center"><?=$objResult["sname"];?></td>
<td align="center"><?=$objResult["uname"];?></td>
<td align="center"><?=$objResult["upass"];?></td>
<td align="center"><?=$objResult["date_re"];?></td>
<td align="center"><?=$objResult["ip"];?></td>
</tr>
<?
}
?>
</table>
<?
//mysql_close($objConnect);
}
?>
<div align="center"><br>
<input name="btnExport" type="button" value="นำออก" onClick="JavaScript:window.location='export.php';">
</div>
</body>
</html>
|
|
|
|
|
Date :
2011-05-12 11:53:35 |
By :
NWii |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ส่วนอันนี้คือไฟล์ CSV
Code (PHP)
<html>
<head>
<title>TOT Wi-Fi To CSV</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<?
$filName = "totwifi.csv";
$objWrite = fopen("totwifi.csv", "w");
include("connect.php");
//$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
//$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM datamem LEFT JOIN dataacc ON (datamem.code = dataacc.code)";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult = mysql_fetch_array($objQuery))
{
fwrite($objWrite, "\"$objResult[name]\",\"$objResult[sname]\",\"$objResult[uname]\",");
fwrite($objWrite, "\"$objResult[upass]\",\"$objResult[date_re]\",\"$objResult[ip]\" \n");
}
fclose($objWrite);
echo "<script> alert('Download.'); window.location='$filName'; </script>";
?>
</table>
</body>
</html>
|
|
|
|
|
Date :
2011-05-12 11:53:59 |
By :
NWii |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บรรทัดที่ 12 ลอง
mysql_query("SET NAMES UTF8");
เดาเอานะครับ
|
|
|
|
|
Date :
2011-05-12 14:24:08 |
By :
grandraftz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
iconv(('TIS-620', 'UTF-8',$objResult[name])
ลองใส่แบบนี้ดูว่าได้ปะ
|
|
|
|
|
Date :
2011-05-12 14:59:41 |
By :
naskw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ครับ function iconv น่าจะสามารถแก้ไขได้
|
|
|
|
|
Date :
2011-05-12 15:36:25 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่โค้ดนี้ก่อนการ mysql_select_db นะครับ
Code (PHP)
// ส่วนที่ทำให้แสดงข้อมูลภาษาไทย
$sql = 'SET CHARACTER SET tis620';
mysql_query($sql);
$sql ="SET collation_connection = 'tis620_thai_ci' ";
mysql_query($sql);
//สิ้นสุดส่วนที่แสดงภาษาไทย
|
|
|
|
|
Date :
2011-05-12 16:07:24 |
By :
prach_kp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|