1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php include_once('../../check_login.php');
$nowdate = date("Y-m-d H:i:s"); $refid = (int)$_GET["refid"];
$sql = "update news set status=case when status = 1 then 0 else 1 end, lastupdate=?, lastupby=? where refid=?"; $parameters = array($nowdate, $_SESSION['cmsloginid'], $refid); if (!($sth = $dbh->prepare($sql))) { throw new Exception('[' . $sth->errorCode() . ']: ' . print_r($sth->errorInfo())); }
if (!$sth->execute($parameters)) { throw new Exception('[' . $sth->errorCode() . ']: ' . print_r($sth->errorInfo())); }
$dbh = null;
header("Location: news_index.php?msg=更新成功&type=".$_GET['type']); ?>
|