|
|
|
การบันทึก textbox ลง ฐานข้อมูลที่เป็น datetime เพิ่งเริ่มต้นรบกวนทุกท่านด้วยน่ะครับ |
|
|
|
|
|
|
|
คือว่า ต้องการบันทึก textbox ลง ฐานข้อมูลที่เป็น datetime ลองดูหลายตัวอย่างแต่ก็ยังทำตามไม่ได้ รบกวนหน่อยน่ะครับ มีมีโค๊ดใ้หดู รบกวนหน่อยน่ะครับ
ไฟล์ calendar-add.php
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>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
$(function() {
$( "#datepicker2" ).datepicker();
});
</script>
</head>
<body>
<form action="calendar-add-con.php" name="frmAdd" method="post">
<table width="600" border="1">
<tr>
<th width="160"> <div align="center">ลำดับที่ </div></th>
<th width="160"> <div align="center">เรื่อง </div></th>
<th width="198"> <div align="center">วันที่เริ่มต้น </div></th>
<th width="97"> <div align="center">วันที่สิ้นสุด </div></th>
<th width="97"> <div align="center">3 </div></th>
<th width="97"> <div align="center">4 </div></th>
</tr>
<tr>
<td><input type="text" name="txtNo" size="30"></td>
<td><input type="text" name="txtName" size="30"></td>
<td><input type="text" name="txtStart" id="datepicker" size="20"></td>
<td><input type="text" name="txtEnd" id="datepicker2" size="20"></td>
<td><input type="text" name="txtLink" size="20"></td>
<td><input type="text" name="txtAll" size="20"></td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
ไฟล์ calendar-add-con.php
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>Untitled Document</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","123") or die("Error Connect to Database");
$objDB = mysql_select_db("com_db");
mysql_query("SET NAMES UTF8");
$strSQL = "INSERT INTO tbl_event";
$strSQL .="(event_id,event_title,event_start,event_end,event_url,event_allDay)";
$strSQL .="VALUES";
$strSQL .="('".$_POST["txtNo"]."','".$_POST["txtName"]."','".$_POST["txtStart"]."','".$_POST["txtEnd"]."','".$_POST["txtLink"]."','".$_POST["txtAll"]."')";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
mysql_close($objConnect);
?>
</body>
</html>
Tag : MySQL, HTML/CSS, JavaScript, Ajax, jQuery
|
|
|
|
|
|
Date :
2013-10-27 22:22:31 |
By :
human-salary |
View :
1267 |
Reply :
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ฟิวด์ฐานข้อมูล วันที่ คือ event_start,event_end
2 ฟิวด์ครับ วันเริ่มต้นกับ วันสิ้นสุด
|
|
|
|
|
Date :
2013-10-27 22:24:59 |
By :
human-salary |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
echo $strSQL;
$objQuery = mysql_query($strSQL);
เอา SQL ออกมาดูหน่อยครับ
|
|
|
|
|
Date :
2013-10-28 06:29:12 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
--
-- Table structure for table `tbl_event`
--
CREATE TABLE `tbl_event` (
`event_id` int(11) NOT NULL auto_increment,
`event_title` varchar(255) NOT NULL,
`event_start` datetime NOT NULL,
`event_end` datetime NOT NULL,
`event_url` varchar(255) NOT NULL,
`event_allDay` varchar(5) NOT NULL,
PRIMARY KEY (`event_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `tbl_event`
--
INSERT INTO `tbl_event` VALUES (1, 'Birthday Party', '2010-08-02 11:35:38', '2010-08-02 15:35:52', 'http://www.ninenik.com', 'false');
INSERT INTO `tbl_event` VALUES (2, 'Meeting', '2010-09-12 08:36:16', '0000-00-00 00:00:00', 'http://www.ninenik.com', 'false');
INSERT INTO `tbl_event` VALUES (3, 'Lunch', '2010-08-13 12:00:00', '2010-08-13 13:00:00', 'http://www.google.com', 'false');
INSERT INTO `tbl_event` VALUES (4, 'All Day Event', '2010-08-26 22:10:08', '0000-00-00 00:00:00', '', 'true');
INSERT INTO `tbl_event` VALUES (5, 'Long Event', '2010-08-29 08:40:00', '2010-08-31 09:30:00', '', 'true');
|
|
|
|
|
Date :
2013-10-28 10:53:39 |
By :
human-salary |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตั้งสติก่อนตอบ...ครับ
|
|
|
|
|
Date :
2013-10-29 01:43:30 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-10-29 08:45:10 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จาก No.2 ผมก็คิดว่า เอา ฐานข้อมูลออกมาดู ผมก็เลยเอาโครงสร้างมันออกมาที่ No.3................... ไม่ใช่เหรอครับ
|
|
|
|
|
Date :
2013-10-29 08:56:01 |
By :
human-salary |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เงียบกันจัง.......................รออยู่อ่ะ
|
|
|
|
|
Date :
2013-10-30 09:38:31 |
By :
human-salary |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอ่อ คือว่า...
พี่เค้าหมายถึง ให้ echo คำสั่ง sql ออกมาดู ว่าผลมันเป็นยังไงอ่ะจ๊ะ
|
|
|
|
|
Date :
2013-10-30 09:43:32 |
By :
tidaangle |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|