php

位置:IT落伍者 >> php >> 浏览文章

PHP网络开发详解:文章管理页面的实现[5]


发布日期:2023年08月24日
 
PHP网络开发详解:文章管理页面的实现[5]
——此文章摘自《完全手册PHP网络开发详解》定价 特价 详细>>http://tracklinktechcn/?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>] []

               

上一篇:PHP网络开发详解:文章管理页面的实现[1]

下一篇:PHP网络开发详解:文章类别管理页面的实现[5]