|
|
|
ไม่แสดงภาษาไทยครับ ออกเป็น ????? ตารางสร้างเป็น utf-8 แล้ว |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>
</head>
<body>
<p> <center>
<h4><strong>test</strong></h4>
</center></p>
<center>
<?php
$str = "20160428";
function date2string($param="", $thai_year=false, $space=" ") {
$arr = array('','มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน','กรกฏาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม');
if ($param == "")
{
return false;
}
else
{
$time = strtotime($param);
$year = ($thai_year == false) ? date("Y", $time) : date("Y", $time) + 543;
return date("j", $time).$space.$arr[date("n", $time)].$space.$year;
}
}
//echo date2string($str, true);
//date2string($result["DATE_SERV"], true);
?>
<?php
$_COOKIE['varname2']='value1';
?>
<?php
ini_set('display_errors', 1);
error_reporting(~0);
$serverName = "localhost";
$userName = "root";
$userPassword = "....";
$dbName = "asset";
$conn = mysqli_connect($serverName,$userName,$userPassword,$dbName);
// mysqli_set_charset($objCon, "utf8");
$sql = "SELECT * from Branch";
$query = mysqli_query($conn,$sql);
$rows = mysqli_num_rows($query);
// $PER_NAME = $rows['PER_NAME'];
if($rows <= 0 )
{
echo "<center>ไม่พบข้อมูล</center>";
}
else echo "<center><strong></strong></h5>";
{
?>
<table width="" border="0">
<tr>
<th width="30" bgcolor="#FF99CC"> <div align="center">ลำดับ </div></th>
<th width="60" bgcolor="#FF99CC"> <div align="center">รหัส </div></th>
<th width="140" bgcolor="#FF99CC"> <div align="center">ชื่อ </div></th>
</tr>
<?php
$i=0;
while($result=mysqli_fetch_array($query,MYSQLI_ASSOC))
{
$i++;
if($i%2==0)
{
$bg = "#FFEFD5";
}
else
{
$bg = "#F0FFFF";
}
?>
<tr bgcolor="<?=$bg;?>">
<td><div align="center"><?php echo "$i"?></td>
<td><div align="left"><?php echo $result["Branch_ID"];?></div></td>
<td><div align="left"><?php echo $result["Branch_name"];?></div></td>
</tr>
<?php
}
?>
</table>
<?php
mysqli_close($conn);
}
แก้ไงครับผม
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2018-09-10 13:51:04 |
By :
sweerawat |
View :
580 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
45. mysqli_query($conn,"set names utf8");
|
|
|
|
|
Date :
2018-09-10 14:08:48 |
By :
Hararock |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|