|
|
|
ถามเรื่องวันที่และเวลา แสดงไม่ตรงตามเวลาจริง ๆ ทั้งใน database และ ในเว็บค่ะ |
|
|
|
|
|
|
|
//////////// อันนี้เป็นฟังก์ชันของวันที่ ค่ะ /////////////
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ฟังก์ชันเพื่อเรียกใช้งาน</title>
</head>
<body>
<?php
function displaydate($x)
{
$thai_m=array("มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน",
"กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม");
$datetime_array=explode("-",$x);
$date_array=explode("-",$x);
$date_array=explode("-",$datetime_array[0]);
$y=$date_array[0];
$m=$date_array[1]+1;
$d=$date_array[2];
$m=$thai_m[$m];
$y=$y+543;
$displaydate="$d $m $y $datetime_array[2]";
return $displaydate;
}
function checkemail($checkemail) {
if(eregi("^[_a-z0-9-]+(.[_a-z0-9-]+)*@[a-z0-9-]+(.[a-z0-9-]+)*(.[a-z]{2,3})$",$checkemail) ) {
return true;
} else {
return false;
}
}
?>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS
|
|
|
|
|
|
Date :
2012-09-05 20:38:15 |
By :
yah |
View :
1528 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////// อันนี้เป็นโค้ดแสดงวันที่ของเว็บบอร์ดค่ะ ////////////////////////
Code (PHP)
<?php
include ("chksession.php");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>แสดงคำตอบเว็บบอร์ด</title>
</head>
<body>
<h4 align="right"><?php echo "คุณเข้าสู่ระบบในชื่อ : <a href='show_member.php'>$sess_username</a>";?></h4>
<h4 align="right"><?php echo "<a href='logout.php'>ออกจากระบบ</a>";?></h4>
<p> [<a href="main.php">กลับหน้าหลัก</a>]
<hr />
</p>
<?php
include ("connect.php");
include ("function.php");
$webboard_id=$_GET['webboard_id'];
//ส่วนที่่1
$sql="select * from webboard where webboard_id='$webboard_id'";
$result=mysql_db_query('test_fu',$sql);
$record=mysql_fetch_array($result);
$webboard_id=$record['webboard_id'];
$webboard_topic=$record['webboard_topic'];
$webboard_message=$record['webboard_message'];
$webboard_date=$record['webboard_date'];
$user_id=$record['user_id'];
$webboard_topic=htmlspecialchars($webboard_topic);
$webboard_message=nl2br(htmlspecialchars($webboard_message));
$webboard_date=displaydate($webboard_date);
$user_id=htmlspecialchars($user_id);
echo "<a href='webboard_view.php'>เว็บบอร์ด</a>";
echo "
<h3>$webboard_topic</h3>
<table width='65%' border='1'>
<tr>
<td bgcolor='#D2E9FF'>
<font size='2' face='MS Sans Serif'>$webboard_message
<p><b>ถามโดย : </b> $user_id
<b>ถามเมื่อ : </b> $webboard_date
<a href='webboard_del.php?webboard_id=$webboard_id'>
[Delete]</a></p></font>
</td>
</tr>
</table><BR>";
//ส่วนที่2
$sql="select * from answebboard where ref_id='$webboard_id' order by ansWebboard_id";
$result=mysql_db_query('test_fu',$sql);
while($record=mysql_fetch_array ($result)) {
$ansWebboard_id=$record['ansWebboard_id'];
$ansWebboard_message=$record['ansWebboard_message'];
$ansWebboard_date=$record['ansWebboard_date'];
$user_id=$record['user_id'];
$ref_id=$record['ref_id'];
$ansWebboard_message=nl2br(htmlspecialchars($ansWebboard_message));
$ansWebboard_date=displaydate($ansWebboard_date);
$user_id=htmlspecialchars($user_id);
echo "
<table width='65%' border='1'>
<tr>
<td bgcolor='#FFFFFF'><font size='2' face='MS Sans Serif'>$ansWebboard_message</font>
</td>
</tr>
<tr>
<td bgcolor='#D2E9FF'><font size='2' face='MS Sans Serif'>
<b><b>ตอบโดย : </b> $user_id
<b> ตอบเมื่อ : </b> $ansWebboard_date
<a href=\"ansWebboard_del2.php?&ref_id=$ref_id&ans_id=$record[ansWebboard_id]\"
onclick=\"return confirm ('ต้องการลบคำตอบนี้ ออกจากระบบจริงหรือไม่?')\">[Delete]</a></font></td>
</tr>
</table>
<BR>";
}
//ส่วนที่3
?>
<h3>ร่วมตอบคำถาม</h3>
<form method="post" action="ansWebboard_save.php">
<table bgcolor="#D2E9FF" border="0">
<tr>
<td>รายละเอียด :</td>
<td><textarea name="ansWebboard_message" rows="5" cols="35"></textarea></td>
</tr>
<tr>
<td>ผู้ตอบ :</td>
<td><?php echo "$sess_newid";?></td>
</tr>
<tr>
<td>ตอบเมื่อ :</td>
<td><displaydate ($date_reg)></td>
</tr>
</table><br>
<input type="hidden" name="ref_id" value="<?php echo $webboard_id;?>">
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>
|
|
|
|
|
Date :
2012-09-05 20:40:21 |
By :
yah |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ Server ไทยหรือเปล่าครับ ถ้าไม่ใช่ลอง Set ตัวนี้ครับ
Code (PHP)
date_default_timezone_set("Asia/Bangkok");
echo date("Y-m-d");
|
|
|
|
|
Date :
2012-09-06 06:07:57 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หรือไม่ลองใช้พวก DateAdd บวก ลบ ให้ได้เวลาจริงครับ
Go to : PHP DateAdd
|
|
|
|
|
Date :
2012-09-06 06:08:47 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมาก ๆ ค่ะ จะลองดูน๊ะค่ะ
|
|
|
|
|
Date :
2012-09-06 14:11:49 |
By :
yah |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|