1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php include 'config.php';
// Check if the user is logged in
if ((!isSet($_SESSION['loginname'])) || ($loggin <> '1')) { header("Location: login.php"); exit; } require("configure.php"); $hnewsid = $_POST["hnewsid"]; $hnewsdate = htmlspecialchars($_POST["hnewsdate"],ENT_QUOTES); $hnewslinken = htmlspecialchars($_POST["hnewslinken"],ENT_QUOTES); $hnewslinksc = htmlspecialchars($_POST["hnewslinksc"],ENT_QUOTES); $hnewstitleen = htmlspecialchars($_POST["hnewstitleen"],ENT_QUOTES); $hnewstitlesc = htmlspecialchars($_POST["hnewstitlesc"],ENT_QUOTES); $nowdate = date("Y-m-d H:i:s"); //print_r($_POST);
// Modify $sql = "update h_news set hnewsdate='$hnewsdate', hnewslinken='$hnewslinken', hnewslinksc='$hnewslinksc', hnewstitleen='$hnewstitleen', hnewstitlesc='$hnewstitlesc', modifyday='$nowdate', cmsloginid='".$_SESSION['cmsloginid']."' "; $sql .= " where hnewsid=". $hnewsid ." "; mysql_query($sql);
if( mysql_errno() > 0 ){ echo 'Modify 主页 新消息 Error:<br />'. mysql_error() .'<br />SQL: '. $sql; exit; }
mysql_close($dbh);
header("Location: h_news_index.php?msg=修改成功"); ?>
|