|
|
|
เพิ่มวันที่ปัจจุบัน ลงใน db อัตโนมัติ ทำไมวันที่ไม่เป็นวันปัจจุบันครับ |
|
|
|
|
|
|
|
เพิ่มวันที่ปัจจุบัน ลงใน db อัตโนมัติ ทำไมวันที่ไม่เป็นวันปัจจุบันครับ
มันกลายเป็น 1900-00-00
ผมแทนค่า $RegDate = date ("y-m-d ");
ตาม code ด้านล่างครับ
Code
<?
$RegDate = date ("y-m-d ");
$path = "photo/";
$valid_formats = array("jpg", "png", "gif", "bmp");
$d= date("YmdHis");
$name = $_FILES['filUpload']['name'];
$size = $_FILES['filUpload']['size'];
if(strlen($name))
{
list($txt, $ext) = explode(".", $name);
if(in_array($ext,$valid_formats))
{
$actual_image_name = date("YmdHis").substr(str_replace(" ", "_", $txt), 3).".".$ext;
$tmp = $_FILES['filUpload']['tmp_name'];
if(move_uploaded_file($tmp, $path.$actual_image_name))
{}}}
//image
$strSQL = "INSERT INTO Applicant";
$strSQL .="(IDCard,RegDate,LinkImage)";
$strSQL .="VALUES ";
$strSQL .= "('".$_POST["IDCard"]."',
'".$_POST["RegDate"]."',
'".$actual_image_name."')";
$objQuery = mssql_query($strSQL);
if($objQuery)
{
echo "";
}
else
{
echo "Error Save [".$strSQL."]";
}
if($result) {
$login_true = $IDCard ;
session_register("login_true") ;
include("mail.php");
//sendmail_welcome($IDCard,$FName,$LName,$EMail,$home); // ??????????????? ??????????????????????
echo "<meta http-equiv='refresh' content='4; url=member_detail.php'>" ;
}
mysql_close($objConnect);
?>
Tag : PHP, Ms SQL Server 2005
|
|
|
|
|
|
Date :
2012-02-09 18:10:33 |
By :
pichettum01 |
View :
2105 |
Reply :
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเป็น localhost ไปตั้งเวลาเครื่องให้เป็นปัจจุบัน
ถ้าเป็น Server ให้ไปแก้เวลาใน Server Host ครับ
|
ประวัติการแก้ไข 2012-02-09 18:13:55
|
|
|
|
Date :
2012-02-09 18:13:25 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมไช้ localhost
เวลาบนเครื่องผมก็ปรกติครับ แต่มัน insert เป็น 1900-00-00
|
|
|
|
|
Date :
2012-02-09 18:19:03 |
By :
pichettum01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strSQL = "INSERT INTO Applicant";
$strSQL .="(IDCard,RegDate,LinkImage)";
$strSQL .="VALUES ";
$strSQL .= "('".$_POST["IDCard"]."',
'".["RegDate"]."', // ตัวนี้คุณลองเปลี่ยนดูถ้าไม่ได้ส่งมาจาก Page อื่น
'".$actual_image_name."')";
|
|
|
|
|
Date :
2012-02-09 18:32:18 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
'".$_POST["RegDate"]."',
น่าจะผิดตรงนี้นะ
คุณประกาศ $RegDate = date ("y-m-d "); ไว้หน้านี้แล้วทำไมต้องมารับค่า post อีกละครับ
ใช้แบบนี้เลยครับ
Code (PHP)
'$RegDate'
|
|
|
|
|
Date :
2012-02-09 18:57:15 |
By :
000su000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Y ตัวใหญ่มั้งคับ
|
|
|
|
|
Date :
2012-02-09 20:37:01 |
By :
pjgunner.com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่เข้าครับ เหอๆๆ
|
|
|
|
|
Date :
2012-02-10 09:14:07 |
By :
pichettum01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยนจาก $_POST["RegDate"] เป็น $RegDate จบเลย
$_POST["ตัวแปร"] เป็นการรับค่าจากฟร์อม ผ่านการส่งค่าแบบ post
แต่ในส่วน โค้ด ของ คุณ วันที่คุณไม่ได้รับมาจากไหน แต่คุณสร้างขึ้นเองในหน้านี้ ก็ใช้ ชื่อ ตัวแปร มัน ตรงๆๆ ไปเลย
เข้าใจยัง
|
|
|
|
|
Date :
2012-02-10 10:16:55 |
By :
lootboom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ok ครับ
ขอบคุณครับ
|
|
|
|
|
Date :
2012-02-10 10:54:22 |
By :
pichettum01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$strSQL = "INSERT INTO Applicant";
$strSQL .="(IDCard,RegDate,LinkImage)";
$strSQL .="VALUES ";
$strSQL .= "('".$_POST["IDCard"]."',curdate(),"'$actual_image_name')";
|
|
|
|
|
Date :
2012-02-11 04:02:48 |
By :
Unidentier |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2015-11-16 16:03:44 |
By :
Chinnawat Singkaew |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่มเวลาอัตโนมัติแบบไม่ต้องกรอกอ่ะรับทำไง
|
|
|
|
|
Date :
2015-11-16 16:05:20 |
By :
Chinnawat Singkaew |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
insert.php
Code (PHP)
<?php require_once('Connections/MyConnect.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO email(name, message) VALUES (%s, %s)",
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['message'], "text"));
mysql_select_db($database_MyConnect, $MyConnect);
$Result1 = mysql_query($insertSQL, $MyConnect) or die(mysql_error());
$insertGoTo = "data-table.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<body>
<form method="post" name="form1" action="<?php echo $editFormAction; ?>">
<table align="center">
<tr valign="baseline">
<td nowrap align="right">ชื่อ:</td>
<td><input type="text" name="name" value="" size="32"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">ข้อความ:</td>
<td><textarea name="message" cols="32"></textarea></td>
</tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td><input type="submit" value="ส่ง"></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1">
</form>
<p> </p>
</body>
</html>
data-table.php
Code (PHP)
<?php require_once('Connections/MyConnect.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_MyConnect, $MyConnect);
$query_ShowData = "SELECT * FROM email";
$ShowData = mysql_query($query_ShowData, $MyConnect) or die(mysql_error());
$row_ShowData = mysql_fetch_assoc($ShowData);
$totalRows_ShowData = mysql_num_rows($ShowData);
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<style type="text/css">
.ฝากข้อความ {
text-align: center;
}
</style>
</head>
<body>
<p class="ฝากข้อความ"><a href="insert.php">ฝากข้อความ</a></p>
<table width="834" border="1" align="center">
<tr>
<td width="105" align="center">ข้อความที่</td>
<td width="193" align="center">ชื่อ</td>
<td width="123" align="center">เวลา</td>
<td width="385" align="center">ข้อความ</td>
</tr>
<?php do { ?>
<tr>
<td align="center" valign="top"><?php echo $row_ShowData['id']; ?></td>
<td align="center" valign="top"><?php echo $row_ShowData['name']; ?></td>
<td align="center" valign="top"><?php echo $row_ShowData['time']; ?></td>
<td><?php echo $row_ShowData['message']; ?></td>
</tr>
<?php } while ($row_ShowData = mysql_fetch_assoc($ShowData)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($ShowData);
?>
พอกดส่งแล้วมันขึ้น 00:00:00 ครับทำไงครับ
|
|
|
|
|
Date :
2015-11-16 16:09:34 |
By :
Chinnawat Singkaew |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|