|
|
|
[มือใหม่]ผมกำลังทำระบบการเพิ่มข่าวประชาสัมพันธ์ อยากได้วิธีการเพิ่่มเวลาลงฐานข้อมูลแบบอัตโนมัติเลยอ่าครับ |
|
|
|
|
|
|
|
Code (PHP)
<?php
$hostname="localhost";
$user="root";
$password="1234";
$dbname="project";
$tbname="news";
mysql_connect($hostname,$user,$password) or die("Not Connection Mysql");
mysql_select_db($dbname) or die("Not Select Date Base");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$date = date('Y:m:d');
$sql_insert = sprintf("INSERT INTO news(date)
vaule('%s')",$_POST['date']);
?>
<?php require_once('Connections/mk.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_mk, $mk);
$query_Recordset1 = "SELECT * FROM news";
$Recordset1 = mysql_query($query_Recordset1, $mk) or die(mysql_error());
mysql_query("SET NAMES UTF8");
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
$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 news (subject, name, detail) VALUES (%s, %s, %s)",
GetSQLValueString($_POST['subject'], "text"),
GetSQLValueString($_POST['name'], "text"),
GetSQLValueString($_POST['detail'], "text"));
mysql_select_db($database_mk, $mk);
$Result1 = mysql_query($insertSQL, $mk) or die(mysql_error());
$insertGoTo = "testttttt.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO news (subject, detail, `date`) VALUES (%s, %s, %s)",
GetSQLValueString($_POST['subject'], "text"),
GetSQLValueString($_POST['detail'], "text"),
GetSQLValueString($_POST['date'], "date"));
mysql_select_db($database_mk, $mk);
$Result1 = mysql_query($insertSQL, $mk) or die(mysql_error());
$insertGoTo = "news_shows.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
mysql_select_db($database_mk, $mk);
$query_Recordset1 = "SELECT * FROM news";
$Recordset1 = mysql_query($query_Recordset1, $mk) or die(mysql_error());
mysql_query("SET NAMES UTF8");
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!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>
<style type="text/css">
#form1 div p {
color: #36C;
font-size: 18;
font-weight: bold;
}
#object {
color: #FFF;
}
</style>
</head>
<body>
<form action="<?php echo $editFormAction; ?>" id="form1" name="form1" method="POST">
<div align="center">
<p>เพิ่มข่าวประชาสัมพันธ์</p>
<table width="383" border="0" cellspacing="2" cellpadding="0">
<tr bgcolor="#92D3F3" id="object">
<td colspan="2"><div align="center">กรุณากรอกรายละเอียดให้ครบถ้วน</div></td>
</tr>
<tr>
<td width="125" bgcolor="#92D3F3" id="object"><div align="center">หัวข้อ</div></td>
<td width="258" bgcolor="#B8DDEF"><label for="subject"></label>
<input name="subject" type="text" id="subject" size="30" maxlength="30" /></td>
</tr>
<tr>
<td bgcolor="#92D3F3" id="object"><div align="center">รายละเอียด</div></td>
<td bgcolor="#B8DDEF"><label for="detail"></label>
<textarea name="detail" cols="27" rows="5" id="detail"></textarea></td>
</tr>
<tr>
<td bgcolor="#92D3F3" id="object"><div align="center">ผู้เพิ่มข่าว</div></td>
<td bgcolor="#B8DDEF"><label for="name"></label>
<input name="name" type="text" id="name" size="20" maxlength="20" /></td>
</tr>
<tr bgcolor="#92D3F3">
<td colspan="2"><div align="center">
<input type="submit" name="submit" id="submit" value="ยืนยัน" />
</div></td>
</tr>
</table>
</div>
<input type="hidden" name="MM_insert" value="form1" />
</form>
</body>
</html>
<?php
mysql_free_result($Recordset1);
?>
การเพิ่มข่าวของผมไม่ซับซ้อนครับ
มีฟอร์มการเพิ่มหัวข้อ รายละเอียด ชื่อผู้เพิ่ม แค่นั้นจบ
แต่ที่ผมอยากได้เพิ่มคือ อยากให้มันเพิ่มเวลาลงฐานข้อมูลเวลาผมทำการเพิ่มข่าวเองเลยอ่าครับ
ไม่ทราบว่าต้องทำยังไงฮะ
รบกวนผู้รู้ช่วยตอบทีครับ ผมมือใหม่มากๆ ไม่ค่อยรู้อะไรมากเลย
ที่ทำถึงตอนนี้ได้เพราะมี dreamweaver ช่วยอ่าครับ
Tag : PHP
|
|
|
|
|
|
Date :
2013-12-01 14:46:12 |
By :
adisorn99 |
View :
973 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$date = date("Y-m-d H:i:s");
แล้วเอา $date ไปใช้ในการบันทึกลง Database
|
|
|
|
|
Date :
2013-12-01 16:12:19 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาไปใส่ตรงไหนฮะ
|
|
|
|
|
Date :
2013-12-01 16:48:14 |
By :
Adisorn99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องเอาไปแทรกไว้ตรงไหนหรอครับ
รบกวนบอกให้ละเอียดหน่อยได้ไหมฮะ ผมไม่รู้อะไรเลย
|
|
|
|
|
Date :
2013-12-01 22:33:29 |
By :
adisorn99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|