——此文章摘自《完全手册PHP网络开发详解》定价
¥
特价
¥
详细>>http://track
linktech
cn/?m_id=dangdang&a_id=A
&l=
&l_type
=
width=
height=
border=
nosave>
</form>
这里通过循环types表中的所有记录来判定下拉框的当前选择并且通过隐藏框来存储当前文章的编号
删除文章页面通过执行一个简单的delete语句来完成文章内容的删除执行后跳转回文章列表页面具体代码如下所示
<?php
if ((isset($_GET[article_id])) && ($_GET[article_id] != ))
{
$deleteSQL = sprintf(DELETE FROM articles WHERE article_id=%s
GetSQLValueString($_GET[article_id] int));
mysql_select_db($database_conn $conn);
$Result = mysql_query($deleteSQL $conn) or die(mysql_error());
$deleteGoTo = admin_listphp;
header(sprintf(Location: %s $deleteGoTo));
}
?>
审核文章页面与删除文章页面类似不同的是其SQL语句如下所示
<?php
$checkSQL = sprintf(UPDATE articles SET checked_indc=checked_indc
last_upt_id=%s WHERE article_id=%s
GetSQLValueString($_SESSION[MM_Username] text)
GetSQLValueString($_GET[article_id] int));
?>
这里使用checked_indc=checked_indc实现审核标志的转换如果当前文章为未审核状态则checked_indc为更新后 checked_indc将为如果当前文章为已审核状态则checked_indc为更新后checked_indc将为
right>[http://developcsaicn/web/htm>] [http://developcsaicn/web/htm>] [http://developcsaicn/web/htm>] [http://developcsaicn/web/htm>] []