|
Hi,
i have the problem about the "date time" setting
this is the php code that i used to insert data to sql database
$Fname = $_POST["Fname"];
$Lname = $_POST["Lname"];
$gender = $_POST["gender"];
$sql="INSERT INTO $tbl_name(firstname, lastname, gender, datetime)
VALUES('$Fname', '$Lname','$gender', NOW() )";
when i submit data to database, the datetime data will be auto insert into datetime field. However, the date time is not same with my country time.
eg, data insert to database is (2010-12-25 15:21:36) , but it should be (2010-12-25 23:22:36)
for you information, im from Malaysia. Appreciate your help ....
thanks...
|