<?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." ".anchor('frame/modify','修改')."<br>";
}
}
function update()
{
$data=$this->input->post('title',true);
$this->db->query("update ci2 set title='".$data."'");
}
}
?>