怎样用php往mysql中添加当前时间和日期? 5
<?phprequire_once('Connections/db.php');?><?phpfunctionGetSQLValueString($theValue,$t...
<?php require_once('Connections/db.php'); ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $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 indb (bt, nr) VALUES (%s, %s)",
GetSQLValueString($_POST['bt'], "text"),
GetSQLValueString($_POST['nr'], "text"));
mysql_select_db($database_db, $db);
$Result1 = mysql_query($insertSQL, $db) or die(mysql_error());
$insertGoTo = "houtai.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=gb2312">
<title>无标题文档</title>
</head>
<body>
<form action="<?php echo $editFormAction; ?>" name="form1" method="POST">
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="28">标题
<label>
<input name="bt" type="text" id="bt" size="40">
</label></td>
</tr>
<tr>
<td height="210"><label>
<textarea name="nr" cols="70" rows="20" id="nr"></textarea>
</label></td>
</tr>
<tr>
<td height="20"><label>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置">
</label></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1">
</form>
</body>
</html>
上面是我用DW做的页面。请帮我看看这代码要怎么该才能实现往mysql里添加当前时间和日期。不要光发个now()或函数啊,网址啊等等,我要的是答案。谢谢能帮我的朋友。不会的或会一点的就别多浪费时间了。谢谢了。急等答案! 展开
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $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 indb (bt, nr) VALUES (%s, %s)",
GetSQLValueString($_POST['bt'], "text"),
GetSQLValueString($_POST['nr'], "text"));
mysql_select_db($database_db, $db);
$Result1 = mysql_query($insertSQL, $db) or die(mysql_error());
$insertGoTo = "houtai.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=gb2312">
<title>无标题文档</title>
</head>
<body>
<form action="<?php echo $editFormAction; ?>" name="form1" method="POST">
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="28">标题
<label>
<input name="bt" type="text" id="bt" size="40">
</label></td>
</tr>
<tr>
<td height="210"><label>
<textarea name="nr" cols="70" rows="20" id="nr"></textarea>
</label></td>
</tr>
<tr>
<td height="20"><label>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置">
</label></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1">
</form>
</body>
</html>
上面是我用DW做的页面。请帮我看看这代码要怎么该才能实现往mysql里添加当前时间和日期。不要光发个now()或函数啊,网址啊等等,我要的是答案。谢谢能帮我的朋友。不会的或会一点的就别多浪费时间了。谢谢了。急等答案! 展开
4个回答
展开全部
1.数据库中没有日期字段, 只是改程序是达不到目的的, 要在数据库中加一个日期字段, 最好用int(11) 计算方便,2.把sql语句改成$insertSQL = sprintf("INSERT INTO indb (bt, nr,time) VALUES (%s, %s,%d)", GetSQLValueString($_POST['bt'], "text"), GetSQLValueString($_POST['nr'], "text"),time());
展开全部
这个问题主要是php获取当前日期的方法,假设数据库中的时间字段写成int类型。
这时需要获取当前时间的时间戳:
$time = time(); // 获取当前时间的时间戳函数,使用这个函数之前注意时区的设置
或者设置成字符串,或者date格式可以这样获得当前时间:
$time = date("Y-m-d H:i:s",time()); // 这里的time()函数其实是可以省略的,建议写上
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
问题描述不清,分数=0,难怪没人回答。
用一个date("Y-m-d")函数取得当前日期,然后添加进mysql不就好了,什么乱七八糟一大堆
用一个date("Y-m-d")函数取得当前日期,然后添加进mysql不就好了,什么乱七八糟一大堆
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询