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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?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");
$hnewssort = $_POST["hnewssort"]; $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);
$sql = "select max(hnewsid) as maxid "; $sql .= "from h_news "; $result=mysql_query($sql); $row = mysql_fetch_array($result,MYSQL_ASSOC); $hnewsid = $row{maxid}+1;
// Sort if ($hnewssort == '' || $hnewssort == '0') { $sql = "select max(hnewssort) as maxid "; $sql .= "from h_news "; $result=mysql_query($sql); $row = mysql_fetch_array($result,MYSQL_ASSOC); $hnewssort = $row{maxid}+1; } if( mysql_num_rows(mysql_query("SELECT hnewsid FROM h_news WHERE hnewssort=$hnewssort ")) > 0){ mysql_query("UPDATE h_news SET hnewssort= hnewssort+1 WHERE hnewssort >=$hnewssort "); }
$sql = "insert into h_news (hnewsid, hnewsdate, hnewslinken, hnewslinksc, hnewstitleen, hnewstitlesc, hnewssort, hnewsstatus, creationday, modifyday, cmsloginid) values ('$hnewsid', '$hnewsdate', '$hnewslinken', '$hnewslinksc', '$hnewstitleen', '$hnewstitlesc', '$hnewssort', '1', '$nowdate', '$nowdate', '".$_SESSION['cmsloginid']."')"; mysql_query($sql); if( mysql_errno() > 0 ){ echo 'Add 主页 新消息 Error:<br />'. mysql_error() .'<br />SQL: '. $sql; exit; }
mysql_close($dbh);
header("Location: h_news_index.php?msg=建立成功"); ?>
|