php

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

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


发布日期:2023年04月18日
 
PHP网络开发详解:文章管理页面的实现[4]
——此文章摘自《完全手册PHP网络开发详解》定价 特价 详细>>http://tracklinktechcn/?m_id=dangdang&a_id=A&l=&l_type= width= height= border= nosave>

编辑页面与添加新文章页面类似不同的是需要将insert语句修改成update语句并且将数据显示在表单中相应的表单代码如下所示

<form method=post name=form action=<?php echo $editFormAction; ?>>

<table align=center>

<tr valign=baseline>

<td nowrap align=right>文章标题</td>

<td><div align=left>

<input type=text name=title value=<?php echo $row_rs_articles

[title]; ?> size=>

</div></td>

</tr>

<tr valign=baseline>

<td nowrap align=right valign=top>文章内容</td>

<td>

<div align=left>

<textarea name=content cols= rows=>

<?php echo $row_rs_articles[content]; ?></textarea>

</div></td>

</tr>

<tr valign=baseline>

<td nowrap align=right>文章分类</td>

<td><div align=left>

<p>

<select name=type_id>

<?php

do {

?>

<option value=<?php echo $row_rs_types[type_id]?>

<?php if($row_rs_types[type_id]==$row_rs_articles[type_id]) { echo

selected;} ?>>

<?php echo $row_rs_types[type_name]?></option>

<?php

} while ($row_rs_types = mysql_fetch_assoc($rs_types));

$rows = mysql_num_rows($rs_types);

if($rows > ) {

mysql_data_seek($rs_types );

$row_rs_types = mysql_fetch_assoc($rs_types);

}

?>

</select>

</p>

</div></td>

</tr>

<tr valign=baseline>

<td colspan= align=right nowrap><div align=center>

<input type=submit value=提交>

<input type=reset name=Reset value=重置>

</div></td>

</tr>

</table>

<input type=hidden name=MM_update value=form>

<input type=hidden name=article_id value=<?php echo $row_rs_articles

[article_id]; ?>>

right>[http://developcsaicn/web/htm>] [http://developcsaicn/web/htm>] [http://developcsaicn/web/htm>] [] [http://developcsaicn/web/htm>]

               

上一篇:PHP程序开发中的中文编码问题[3]

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