|
|
|
เวลาบันทึกวันที่ปัจจุบันลงฐานข้อมูล มันจะขึ้นเป็น now() อยากให้มันขึ้นเป็นตัวเลขทำยังไงหรอค่ะ ... |
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<style type="text/css">
<!--
body,td,th {
font-family: sans-serif;
font-size: 14px;
color: #0000FF;
}
body {
background-color: #FFFF99;
margin-left: 0.5px;
margin-top: 1px;
}
.style1 {color: #0000FF}
a:link {
color: #0000FF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #0000FF;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
a {
font-family: sans-serif;
}
-->
</style></head>
<body>
<div align="center">
<h1><img src="image/head.jpg" width="1000" height="100"></h1>
<form action="p31.php" method="post" enctype="multipart/form-data" name="form1">
<table width="1000" border="0" bgcolor="#FFFFCC">
<tr>
<td width="193" bgcolor="#99FF66"><div align="center" class="style1">เมนูหลัก</div></td>
<td width="30" rowspan="18" bgcolor="#FFFF99"> </td>
<td width="763" bgcolor="#99CCFF"><div align="center"></div>
<div align="left">กรอกข้อมูลการเช่า</div></td>
</tr>
<tr>
<td bgcolor="#9999FF"><div align="left"><a href="editlist1.php">แก้ไขข้อมูลสินค้า</a></div></td>
<td><div align="left">เลขที่พื้นที่เช่า
<input name="l1" type="text" id="l1" size="8">
</div></td>
</tr>
<tr>
<td height="26" bgcolor="#9999FF"><div align="left"><a href="p2.php">กลับหน้าหลัก</a></div></td>
<td><div align="left">
<p>วันที่เริ่มเช่า
<?php
$_month_name = array("01"=>"มกราคม", "02"=>"กุมภาพันธ์", "03"=>"มีนาคม",
"04"=>"เมษายน", "05"=>"พฤษภาคม", "06"=>"มิถุนายน",
"07"=>"กรกฎาคม", "08"=>"สิงหาคม", "09"=>"กันยายน",
"10"=>"ตุลาคม", "11"=>"พฤศจิกายน", "12"=>"ธันวาคม");
$vardate=date('Y-m-d');
$yy=date('Y');
$mm =date('m');$dd=date('d');
if ($dd<10){
$dd=substr($dd,1,2);
}
$date=$dd ." ".$_month_name[$mm]." ".$yy+= 543;
echo $date;
?>
</div></td>
</tr>
<tr>
<td rowspan="15" bgcolor="#FFFF99"> </td>
<td bgcolor="#FFFFCC"> </td>
</tr>
<tr>
<td bgcolor="#99CCFF"><div align="left">ข้อมูลสินค้า</div></td>
</tr>
<tr>
<td bgcolor="#FFCCFF"><div align="left">ประเภทสินค้าที่จำหน่าย</div></td>
</tr>
<tr>
<td>
<div align="left">
<input name="ca" type="radio" value="หัตถกรรมพื้นบ้าน">
หัตถรรมพื้นบ้าน(เครื่องจักสาร)</div></td>
</tr>
<tr>
<td>
<div align="left">
<input name="ca" type="radio" value="เครื่องเงิน">
เครื่องเงิน
</div></td>
</tr>
<tr>
<td>
<div align="left">
<input name="ca" type="radio" value="เสื้อผ้า-เครื่องแต่งกาย">
เสื้อผ้า-เครื่องแต่งกาย
</div></td>
</tr>
<tr>
<td><div align="left">
<input name="ca" type="radio" value="ของตกแต่ง">
ของตกแต่ง</div></td>
</tr>
<tr>
<td><div align="left">
<input name="ca" type="radio" value="อาหาร-เครื่องดื่ม">
อาหาร-เครื่องดื่ม</div></td>
</tr>
<tr>
<td><div align="left">
<input name="ca" type="radio" value="สปา">
สปา</div></td>
</tr>
<tr>
<td><div align="left">
<input name="ca" type="radio" value="อื่นๆ">
อื่นๆ
</div></td>
</tr>
<tr>
<td bgcolor="#FFFFCC"> </td>
</tr>
<tr>
<td bgcolor="#FFCCFF"><div align="left">
<p>ภาพสินค้าตัวอย่าง</p>
</div></td>
</tr>
<tr>
<td><div align="left">
อัพโหลดไฟล์รูปภาพ
<input name="file" type="file" id="file">
<input name = "hidAction" id = "hidAction" type="hidden" value="Add">
</div></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> <div align="center">
<input type="submit" name="Submit" value="บันทึก">
<input type="reset" name="Submit2" value="Reset">
</div></td>
</tr>
</table>
</form>
<p> </p>
</div>
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2010-09-21 21:22:39 |
By :
ยัยบ๊อง |
View :
2550 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วถ้าอยากให้แสดงใน textbox โค้ดตัวนี้ต้องเปลี่ยนไหมค่ะ ^^
|
|
|
|
|
Date :
2010-09-21 21:24:09 |
By :
ยัยบ๊อง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษทีค่ะ โค้ดผิดแก้แล้ว ตอนนี้ใส่โค้ดวันที่แบบนี้ลงไปในฐานข้อมูลเป็นตัวเลขไรไม่รู้อ่ะ T^TCode (PHP)
<input type="text" name="date" id="date" value="<?=date('Y-m-d')?>">
|
|
|
|
|
Date :
2010-09-21 21:46:16 |
By :
งงจัง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดูโค๊ด ที่ insert ข้อมูล ลงฐานข้อมูลหน่อยครับ
|
|
|
|
|
Date :
2010-09-21 22:21:44 |
By :
iieszz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หน้าฟอร์มค่ะ
Code (PHP)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<style type="text/css">
<!--
body,td,th {
font-family: sans-serif;
font-size: 14px;
color: #0000FF;
}
body {
background-color: #FFFF99;
margin-left: 0.5px;
margin-top: 1px;
}
.style1 {color: #0000FF}
a:link {
color: #0000FF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #0000FF;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
a {
font-family: sans-serif;
}
-->
</style></head>
<body>
<div align="center">
<h1><img src="image/head.jpg" width="1000" height="100"></h1>
<form action="p31.php" method="post" enctype="multipart/form-data" name="form1">
<table width="1000" border="0" bgcolor="#FFFFCC">
<tr>
<td width="193" bgcolor="#99FF66"><div align="center" class="style1">เมนูหลัก</div></td>
<td width="30" rowspan="18" bgcolor="#FFFF99"> </td>
<td width="763" bgcolor="#99CCFF"><div align="center"></div>
<div align="left">กรอกข้อมูลการเช่า</div></td>
</tr>
<tr>
<td bgcolor="#9999FF"><div align="left"><a href="editlist1.php">แก้ไขข้อมูลสินค้า</a></div></td>
<td><div align="left">เลขที่พื้นที่เช่า
<input name="l1" type="text" id="l1" size="8">
</div></td>
</tr>
<tr>
<td height="26" bgcolor="#9999FF"><div align="left"><a href="p2.php">กลับหน้าหลัก</a></div></td>
<td><div align="left">
<p>วันที่เริ่มเช่า
<input name="date" type="text" id="date" value="<?=date('Y-m-d')?>">
</div></td>
</tr>
<tr>
<td rowspan="15" bgcolor="#FFFF99"> </td>
<td bgcolor="#FFFFCC"> </td>
</tr>
<tr>
<td bgcolor="#99CCFF"><div align="left">ข้อมูลสินค้า</div></td>
</tr>
<tr>
<td bgcolor="#FFCCFF"><div align="left">ประเภทสินค้าที่จำหน่าย</div></td>
</tr>
<tr>
<td>
<div align="left">
<input name="ca" type="radio" value="หัตถกรรมพื้นบ้าน">
หัตถรรมพื้นบ้าน(เครื่องจักสาร)</div></td>
</tr>
<tr>
<td>
<div align="left">
<input name="ca" type="radio" value="เครื่องเงิน">
เครื่องเงิน
</div></td>
</tr>
<tr>
<td>
<div align="left">
<input name="ca" type="radio" value="เสื้อผ้า-เครื่องแต่งกาย">
เสื้อผ้า-เครื่องแต่งกาย
</div></td>
</tr>
<tr>
<td><div align="left">
<input name="ca" type="radio" value="ของตกแต่ง">
ของตกแต่ง</div></td>
</tr>
<tr>
<td><div align="left">
<input name="ca" type="radio" value="อาหาร-เครื่องดื่ม">
อาหาร-เครื่องดื่ม</div></td>
</tr>
<tr>
<td><div align="left">
<input name="ca" type="radio" value="สปา">
สปา</div></td>
</tr>
<tr>
<td><div align="left">
<input name="ca" type="radio" value="อื่นๆ">
อื่นๆ
</div></td>
</tr>
<tr>
<td bgcolor="#FFFFCC"> </td>
</tr>
<tr>
<td bgcolor="#FFCCFF"><div align="left">
<p>ภาพสินค้าตัวอย่าง</p>
</div></td>
</tr>
<tr>
<td><div align="left">
อัพโหลดไฟล์รูปภาพ
<input name="file" type="file" id="file">
<input name = "hidAction" id = "hidAction" type="hidden" value="Add">
</div></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> <div align="center">
<input type="submit" name="Submit" value="บันทึก">
<input type="reset" name="Submit2" value="Reset">
</div></td>
</tr>
</table>
</form>
<p> </p>
</div>
</body>
</html>
หน้าcodeCode (PHP)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><style type="text/css">
<!--
body,td,th {
font-family: sans-serif;
font-size: 24px;
color: #0000FF;
}
body {
background-color: #FFFF99;
margin-left: 0.5px;
margin-top: 1px;
}
-->
</style></head>
<META HTTP-EQUIV='Refresh' CONTENT='3; URL=p3.php'>
<link href="fresh.css" rel="stylesheet" type="text/css">
<br><center>Save Successful!!!!!!</center></br>
<br><center>please wait !!!</center></br>
</head>
<?
if($hidAction == "Add") { //เช็คค่า hidden ที่่ส่งมา ถ้าเท่ากับ Add ให้โปรแกรมทำงาน
$date = date("U"); //สร้างเลข 10 หลักมาจากเวลา เพื่อเอาไปใช้เป็นชื่อของรูป ป้องกันชื่อรูปซ้ำ
if($file != "") {
$type = getimagesize($file); //หาประเภทของรูปภาพ
if($type[2] == 1) { //เมื่อรูปภาพเป็นชนิด gif
$image = $date."_img.gif";
} else if($type[2] == 2) { //เมื่อรูปภาพเป็นชนิด jpg
$image = $date."_img.jpg";
}
copy($file, "image/$image"); //ก๊อปปี้รูปภาพไปยังโพลเดอร์ images
chmod("image/$image", 0664); //ทำการ changmode
}
$host="localhost";
$db_username="root";
$db_password="1234";
$dbname="web1"; //ชื่อฐานข้อมูล
$connect = mysql_connect($host,$db_username,$db_password);
//$sql = "insert into goods ( image) values ('$image') "; //เพิ่มข้อมูลลงดาต้าเบส โดนเอาชื่อของรูปไปเก็บไว้
$sql = "insert into goods (l1,date,ca,image ) values ('$l1','$date','$ca','$image') "; //เพิ่มข้อมูลลงดาต้าเบส โดนเอาชื่อของรูปไปเก็บไว้
$dbquery = mysql_db_query($dbname, $sql);
mysql_close();
}
//$l1 = mysql_insert_id();
//header("location:page_new.php?id=".$l1);
?>
<body>
</body>
</html>
ตอนนี้มันบันทึก date เป็นตัวเลข 1285085071 แบบนี้อ่ะ อยากให้มันเป็น 21 / 09 /2010 อะไรประมาณนี้
มันจะเกี่ยวกับชนิดของข้อมูลในฐานข้อมูลด้วยไหมค่ะ เริ่ม งง
|
|
|
|
|
Date :
2010-09-21 23:01:11 |
By :
งงล่ะ...อิอิ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรง บรรทัดที่ 34 $date = date("U");
คุณได้เขียน comment ไว้เเล้วว่า มันเอาไำว้ทำอะไร แล้วคุณเอามาใช้เก็บเ้ป็น วันที่ทำไมกันครับ ผมงงครับ -*-
คุณจะเปลี่ยนชื่อตัวแปรของ บรรทัดที่ 34 ก็ได้ หรือเพิ่มอีก บรรทัดเป็น
$datez = date("d/m/Y"); // ประมาณนี้ ซึ่งก่อนหน้านี้คุณก็เขียนไว้ประมาณนี้เเล้ว
แล้วตอน insert ลง db จาก
$sql = "insert into goods (l1,date,ca,image ) values ('$l1','$date','$ca','$image') ";
เป็น
$sql = "insert into goods (l1,date,ca,image ) values ('$l1','$datez','$ca','$image') ";
ประมาณนี้แล
|
|
|
|
|
Date :
2010-09-22 00:14:25 |
By :
- - |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาอันนี้ไป ศึกษาดูด้วยนะครับ จะได้รู้ไว้
http://php.net/manual/en/function.date.php
|
|
|
|
|
Date :
2010-09-22 00:16:50 |
By :
- - |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code ผมไว้เป็นแนวทาง ^^"
<?php
//ส่วนติดต่อกับฐานข้อมูลคงไม่ต้องบอก น่ะ ^^
function dateTH($date)
{
$year = substr("$date", 0, 4);
$year = $year + 543;
$thaimonth = array("ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค.");
$month = substr("$date", 4, 2);
$month = (int)$month - 1;
$month = $thaimonth[$month];
$day = substr("$date", 6, 2);
return (int)$day . " " . $month . " " . $year;
} // end function
$regis_date=dateTH(date('Ymd'));อ้างอิงวันนี้ 29/09/2553 Ymd=2010929
$sql="INSERT INTO info SET regis_date='$regis_date'";
?>
ส่วนของตารางในฐานข้อมูลinfo ในฟิลด์ regis_date ชนิด varchar(15)
เท่ในี้ในฟิลด์ regis_date ของจะมีข้อมมูล 29 ก.ย. 2553
|
|
|
|
|
Date :
2010-09-29 16:54:31 |
By :
cool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|