|
|
|
ช่วยดูหน่อยครับ เรื่องเพิ่มวันที่เข้า mysql วันที่กลายเป็น0000-00-00 |
|
|
|
|
|
|
|
ลองแก้ตามแล้วก็ยังเป็น 0000-00-00 อยู่อ่ะครับ
|
|
|
|
|
Date :
2011-05-12 09:45:04 |
By :
naenapat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเปลี่ยนจาก $_GET เป็น $_POST ดูนะครับ
Code (PHP)
<html>
<head>
<title></title></title>
ส่วนรับข้อมูลวันที่
</head>
<body bgcolor="#FFFFCC">
<center>
<?php
$DD=$_POST['day'];
$MM=$_POST['month'];
$YY=$_POST['year'];
$date=$YY.'-'.$MM.'-'.$DD;
?>
<form action="adddate.php" method="post">
<br><br><b>Enter Date</b><br><br>
<input type="hidden" name ="date" value="<?php echo $date;?>" >
<input type="text" name ="day" >
/
<input type ="text" name ="month">
/
<input type ="text" name ="year">
<br><br><b>Enter Name</b><br><br>
<input type ="text" name ="name">
<br><br>
<input type ="submit" value="ADD">
<br>
</center>
</body>
</html>
|
|
|
|
|
Date :
2011-05-12 10:01:09 |
By :
prach_kp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$strSQL ="INSERT INTO time(date,name) VALUES('".date("Y-m-d")."','".$_POST[name]."')";
เอาแบบนี้เลยดีกว่าครับ
|
|
|
|
|
Date :
2011-05-12 10:11:01 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
echo $strSQL;
เอาค่าออกมาดู หรือเอาไปทดสอบบน phpMyAdmin ครับ
|
|
|
|
|
Date :
2012-03-30 12:53:50 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|