|
<?php
define('IN_TG',true);
//引入公共文件
require substr ( dirname ( __FILE__ ), 0, - 2 ).'/includes/common.inc.php'; //转换成硬路径,速度更快
require ROOT_PATH.'includes/type.func.php';
$_type_arr = _fkzx_type();
session_start();
if(!isset($_SESSION['name'])){
exit ( 'Access Defined!' );
}
$_name = $_SESSION['name'];
$_id = $_GET['id'];
if($_GET['id']!=null){
$_sql = "SELECT * FROM e_fkzx WHERE e_id = $_id LIMIT 1 ";
$_result = _fetch_array($_sql);
if ($_GET['action'] == 'edata') {
$_title = trim($_POST['title']);
$_cont = $_POST['content'];
$_type = $_POST['type'];
$_sql_update = "UPDATE e_fkzx SET
e_title = '$_title',
e_cont = '$_cont',
e_type = $_type ,
e_name = '$_name' WHERE e_id = $_id LIMIT 1";
_query($_sql_update);
_close();
echo "<script type='text/javascript'>location.href='list.fkzx.php';</script>";
exit();
}
}else{
_close();
exit ( 'Access Defined!' );
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>一站式后台管理系统</title>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" href="style/basic.css" type="text/css" />
<link rel="stylesheet" href="style/update.css" type="text/css" />
</head>
<body>
<div class="nav">
<h3>妇科中心 -> 修改信息</h3>
</div>
<div class="update">
<form action="update.fkzx.php?id=<?php echo $_id?>&action=edata" method="post">
<table cellpadding="0" cellspacing="0">
<tr class="head"><td colspan="2">修改信息</td></tr>
<tr><td class="w100 h38 b">文章标题:</td><td><input type="text" name="title" class="text f_l" value="<?php echo $_result[e_title]?>" /><em class="f_l">下限是4个字符,上限是28个字符</em></td></tr>
<tr><td colspan="2">
<!-- 加载编辑器的容器 -->
<script id="container" name="content" type="text/plain" style="width:1000px;height:300px;" ><?php echo $_result[e_cont]?></script>
<!-- 配置文件 -->
<script type="text/javascript" src="ueditor.config.js"></script>
<!-- 编辑器源码文件 -->
<script type="text/javascript" src="ueditor.all.js"></script>
<!-- 实例化编辑器 -->
<script type="text/javascript"> var ue = UE.getEditor('container'); </script>
</td></tr>
<tr><td class="h38 b">选择分类:</td>
<td>
<span>
<?php
for($i=0;$i<count($_type_arr);$i++){
if(($i+1)==$_result[e_type]){
echo '<input type="radio" class="radio" name="type" value="'.($i+1).'" checked="checked" />'.$_type_arr[$i];
}else{
echo '<input type="radio" class="radio" name="type" value="'.($i+1).'" />'.$_type_arr[$i];
}
}
?>
</span>
</td>
</tr>
<tr><td colspan="2" class="h38 center"><input type="submit" value="提交" class="submit" /><input type="reset" class="reset" value="重填" /></td></tr>
</table>
</form>
</div>
<?php
require ROOT_PATH.'includes/close.inc.php';
?>
<div style="height:40px;"></div>
</body>
</html>
效果图:
|
|
|