|
|
|
จะบันทึกเวลาที่ลงในฐานข้อมูลอัตโนมัติต้องใช้คำสั่งยีงไงคะผู้รู้ช่วยตอบที |
|
|
|
|
|
|
|
Rs("date") = now
|
|
|
|
|
Date :
12 ก.ย. 2551 11:27:47 |
By :
kapeak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คำสั่งที่เขียนเปนแบบนี้ค่ะ
<?
$today=getdate();
$month=$today["month"];
$mday=$today["mday"];
$year=$today["year"];
$hour=$today["hours"];
$minute=$today["minutes"];
$second=$today["seconds"];
echo"<center><fontsize=14><b>";
echo"$month $mday $year ";
echo"".$hour.":".$minute.":".$second;
echo"</b></font></center>";
echo"<br>";
?>
<?php
require_once("config.php");
if(isset($_POST['ok'])){
$sql="insert into report(car,bill,cus,driver,num,dtnow) ";
$sql.="values('".$_POST['car']."','".$_POST['bill']."','".$_POST['cus']."','".$_POST['driver']."','".$_POST['num']."', '".$_POST['CURRENT_TIMESTAMP']."')";
//echo $sql."<<<<";
mysql_query($sql);
header('Location:report.php');
}
?>
พอรันออกมาเวลาเปน0000.00.00 00.00.00
ช่วยแนะนำด้วยคะ
|
|
|
|
|
Date :
12 ก.ย. 2551 12:12:55 |
By :
ปาปา |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเป็นเวลาปัจจุบันให้ใช้ฟังชั่นของ Mysql เลยก็ได้คับ
CURDATE()
ฟีลในฐานข้อมูลต้องเป็นชนิด date นะครับ
เช่น
mysql_query("INSERT INTO table VALUES('yes', 'no', 'ok', CURDATE())");
http://gunner.freetzi.com
|
|
|
|
|
Date :
12 ก.ย. 2551 18:36:53 |
By :
เอี่ยว |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|