HOME > PHP > PHP Forum > รบกวนดูโค๊ดหน่ยอคับบ เป็นวันที่สมัครสมาชิก Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings.
รบกวนดูโค๊ดหน่ยอคับบ เป็นวันที่สมัครสมาชิก Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings.
ส่วนนี้ Error คับ
Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Krasnoyarsk' for '7.0/no DST' instead in C:\AppServ\www\Mazzard\register2.php on line 17
if ($user_reg=="" or
$user_reg=="" or
$pass_reg=="" or
$name_reg=="" or
$sex_reg=="" or
$tel_reg=="" or
$email_reg=="" or
$address_reg="" )
{ echo "<h3>กรุณากรอกข้อมูลให้ครบถ้วน</h3>"; exit(); }
include "function.php";
if (!checkemail($email_reg))
{
echo "<h3>ERROR : รูปแบบการกรอกอีเมล์ไม่ถูกต้อง </h3>"; exit();
}
include "config.php";
$sql = "select * from tb_member where username='$user_reg' ";
$result = mysql_query( $sql, $conn );
$am=mysql_num_rows($result);
if($am>0) {
echo "<h3>ERROR : Username ซ้ำคับ </h3>"; exit();
}
$sql = "insert into tb_member
set username='$user_reg',password='$pass_reg',name='$name_reg',sex='$sex_reg',email='$email_reg',telephone='$tel_reg
',address='$address_reg'";
$sqlquery=mysql_db_query($dbname,$sql);
if ($result) {
echo "<h3>ข้อมูลของท่านถูกบันทึกเรียบร้อยแล้ว</h3>";
echo "<a href='index.php'>เข้าสู่ระบบ</a><br><br>";
}else{
echo "<h3>ไม่สามารถสมัครเป็นสมาชิกได้</h3>";
}
mysql_close();
?>
นี้เป็นฟังก์ชั่นคับ Function.php
function displaydate($x) {
$thai_m=array ("มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายม","กรกฏาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม");
$date_array=explode ("-",$x);
$y=$date_array[0];
$m=$date_array[1]-1;
$d=$date_array[2];
Strict Standards: date() [function.date]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Krasnoyarsk' for '7.0/no DST' instead in C:\AppServ\www\Mazzard\register2.php on line 32