ขอความช่วยเหลือหน่อยครับ เรื่อ mssql ดึงเวลาจาก table มันไม่โชว์ วัน-เดือน-ปี เวลา
ฟิล datebuy เก็บเป็นชนิดอะไรไว้ครับ ขอดูตัวอย่างในการเก็บ
Date :
2014-02-22 00:39:31
By :
meannerss
2014-02-21 18:07:00
type smalldatetime ใน datebuy
ประมานนี้อ่าครับ
ประวัติการแก้ไข 2014-02-22 00:48:38
Date :
2014-02-22 00:48:32
By :
gotcoltd
ส่วน DB ก็ OK แล้วครับ ส่วนที่ปัญหาคือส่วนที่นำมาแสดงดังภาพด้านบน โค้ดส่วนนั้นว่ายังไงบ้างครับตรงนั้นเหละที่มันโดนเซ็ตเวลาเป็น
AM PM
Date :
2014-02-22 00:54:06
By :
meannerss
แบบนี้อะครับ
Code (PHP)
<font color='red'><p class="cutrue_head">ไอเทมที่ขายออกไปแล้ว 10 อันดับล่าสุด<p>
<tr>
<td height="40" width="50" align="center" background="/images/common/title_40_bg.gif"> <div align="center" class="p10_999999">ลำดับ</div></th>
<td height="40" width="400" align="center" background="/images/common/title_40_bg.gif"> <div align="center" class="p10_999999">Title </div></th>
<td height="40" width="50" align="center" background="/images/common/title_40_bg.gif"> <div align="center" class="p10_999999">รูป </div></th>
<td height="40" width="100" align="center" background="/images/common/title_40_bg.gif"> <div align="center" class="p10_999999">ราคา </div></th>
<td height="40" width="100" align="center" background="/images/common/title_40_bg.gif"> <div align="center" class="p10_999999">Date</div></th>
</tr>
<?
$limit = 10;
$count = 1;
$now = date("Y-m-d H:i:s");
$strSQL = "SELECT top $limit * FROM time WHERE id = 1 ORDER BY id desc";
$objQuery = mssql_query($strSQL) or die ("Error Query [".$strSQL."]");
$i = 0;
while($objResulte = mssql_fetch_array($objQuery))
{
$i++;
?>
<tr>
<td height="40" width="50" align="center" background="/images/common/title_40_bg.gif" class="p10_666610"><?echo $count;?></div></td>
<td height="40" width="400" align="center" background="/images/common/title_40_bg.gif" class="p10_666610"><?=$objResulte["title"];?></div></td>
<td height="40" width="50" align="center" background="/images/common/title_40_bg.gif" class="p10_666610"><img src='images/pic/<?echo $imgitem[$objResulte['type']];?>.png' class="imgx" border='0' width='30' height='30'></div></div></td>
<td height="40" width="100" align="center" background="/images/common/title_40_bg.gif" class="p10_666610"><?=$objResulte["price"];?></div></td>
<td height="40" width="100" align="center" background="/images/common/title_40_bg.gif" class="p10_666610"><?=$objResulte["datebuy"];?></div></td>
</tr>
<?
$count++;
}
?>
Date :
2014-02-22 00:57:50
By :
gotcoltd
Code (PHP)
echo date("d-m-Y -------- G:i:s",strtotime("2014-02-21 18:07:00"));
ข้างบนคือต้นแบบครับ ทีนี้ลองปรับใช้แบบนี้ดู
Code (PHP)
<?=date("d-m-Y -------- G:i:s",strtotime($objResulte["datebuy"]));?>
ประวัติการแก้ไข 2014-02-22 01:10:55
Date :
2014-02-22 01:11:28
By :
meannerss
Load balance : Server 00