|
|
|
ดึงข้อมูลจาก SQL SERVER มาแสดงที่หน้าเว็บให้เป็นภาษาไทยยังไงครับ |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<title></title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/jquery-2.1.4.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</head>
<style>
</style>
<body>
<?php
ini_set('display_errors', 1);
error_reporting(~0);
$serverName = "172.255.152.89";
$userName = "sa";
$userPassword = "P@ssw0rd";
$dbName = "CRM_DATA";
$connectionInfo = array(
"Database"=>$dbName,
"UID"=>$userName,
"PWD"=>$userPassword,
"MultipleActiveResultSets"=>true);
$connect = sqlsrv_connect( $serverName, $connectionInfo);
if($connect === FALSE)
{
die( print_r( sqlsrv_errors(), true));
}
$stmt = "select DETAIL_CODE,THAI_DESC from BTCT_ST_DTL";
$query = sqlsrv_query($connect,$stmt);
?>
<div class="container">
<div class="row">
<table class="table table-condensed table-striped table-bordered">
<thead>
<tr>
<th style="text-align: center">Code</th>
<th style="text-align: center">Detail</th>
<tr>
</thead>
<?php
while ($result = sqlsrv_fetch_array($query,SQLSRV_FETCH_ASSOC))
{
?>
<tbody>
<tr>
<th><?PHP echo $result["DETAIL_CODE"]; ?></th>
<th><?PHP echo $result["THAI_DESC"];?></th>
</tr>
</tbody>
<?PHP
}
?>
</table>
</div>
</div>
</body>
</html>
พอแสดงข้อมูลแล้วมันไม่ขึ้นภาษาไทยครับ ไม่ทราบว่าแก้ยังไง
Output:
Tag : PHP, Ms SQL Server 2008, HTML/CSS
|
|
|
|
|
|
Date :
2015-11-19 15:11:43 |
By :
VampireTom |
View :
5965 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2015-11-23 09:12:18 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เราจะเรียกใช้ข้อมูลจาก sql server มาใช้แสดงเป็นข้อมูลกราฟบนเว็บไซต์ เราจะเรียกใช้ยังไงคับ เช่น phpmyadmin ผมมีฟิลด์อยู่ 2 ฟิลด์ คือ ฟิล์ชื่อ และฟิลด์รายจ่าย แล้วผมจะดึงมาทำกราฟเปรียบเที่ยบว่า นาย A ใช้เงิน XXX ในวันที่ 1,2,3,... คือข้อมูลเยอะมาก ใช้วิธีการพิมพ์ค่าทีละตัวไม่ได้เนื่องจากมีหลาย row เรามีสธีการดึงมาทั้งฟิลด์แล้วเอาค่านั้นมาทำเป็นแกน X ของกราฟได้มั้ยครับ
|
|
|
|
|
Date :
2020-12-15 18:30:24 |
By :
นิสิต |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|