用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2315|回复: 0
收起左侧

[讨论/交流] 测试后台程序教程。。。。

[复制链接]
发表于 2010-8-6 16:18:53 | 显示全部楼层 |阅读模式
视图层
frame_view.php
HTML复制代码
<html>
<head>
<title>新闻后台</title>
</head>
<frameset cols="15%,*">
<frame src='frame/left'>
<frame src='frame/right'  name='main'>
</frameset>
</html>
复制代码


left.php
HTML复制代码
<html>
<head>
<title>新闻</title>
</head>
<body>
<center>
<a href='deal'  target='main'>公司新闻</a>
</center>
</body>
</html>
复制代码


right.php
  1. 欢迎光临
复制代码
modify_view.php
HTML复制代码
<html>
<head>
<meta http-equiv="content-Type" content="text/html; charset=gb2312">
</head>
<body>
        <form method="post" name="myform" action="update">
                <table width="100%" border="0" cellspacing="1" cellpadding="0">
                  <tr bgcolor="#ECF5FF">
                    <td width="15%" height="25"> 新闻标题:<input name=title></td>                  
                  </tr><br>
                  <tr bgcolor="#ECF5FF">
                    <td height="25" >新闻内容:</td>
                  </tr><br>
                  <tr bgcolor="#ECF5FF">
                    <td ><textarea name="content" style="display:none" rows=20 cols=50></textarea>
                      <iframe ID="eWebEditor1" src="http://localhost/CI/eWebEditor/ewebeditor.php?id=content&style=standard" frameborder="0" scrolling="no" width="560" HEIGHT="450"></iframe>
                    </td>
                  </tr><br>
                  <tr bgcolor="#ECF5FF">
                    <td height="25" >
                        <input name="submit" type="submit" value="确定">
                        &nbsp;
                        <input name="reset" type="reset" value="重置">
                    </td>
                  </tr>
                </table>
          </form>
 </body>
 </html>
复制代码


控制层
frame.php

PHP复制代码
<?php
        class Frame extends Controller
        {
                function __construct()
                {
                        parent::Controller();
                }
                function index()
                {
                        $this->load->helper('url');                    
                        $this->load->view('frame_view');
                }
                function left()
                {
                        $this->load->view('left');
                }
                function right()
                {
                        $this->load->view('right');
                }
                function deal()
                {
                        $this->load->database();
                        $this->load->model('frame_model');
                        $this->frame_model->sel();
                }
                function modify()
                {
                        $this->load->view('modify_view');
                }
                function update()
                {
                        $this->load->database();
                        $this->load->model('frame_model');
                        $this->frame_model->update();
                }
        }
?>
复制代码


模型层
frame_model.php
PHP复制代码
<?php
        class frame_model extends Model
        {
                function __construct()
                {
                        parent::Model();
                        $this->load->helper('url');    
                }
                function sel()
                {
                        $query=$this->db->get('ci2');
                        foreach($query->result() as $row)
                        {
                                echo $row->title."&nbsp;&nbsp;".anchor('frame/modify','修改')."<br>";
                        }
                }
                function update()
                {
                        $data=$this->input->post('title',true);
                        $this->db->query("update ci2 set title='".$data."'");
                }
        }
?>
复制代码


感想:完了,enjoy,功能大体就是调用个编辑器,可以更新标题,内容的没写,原理都一样的。。实在没什么好讲的。。就这样吧!!!

评分

参与人数 1威望 +5 收起 理由
Hex + 5 原创内容

查看全部评分

本版积分规则