load->model('test_model'); $template = $this->input->post('ic_template'); //构造一个页面 $html = ''; $html .= '

AH模板页面查询

'; $html .= '
'; $html .= ''; $html .= '
'; echo $html; if(!empty($template)){ $all_url = $this->test_model->get_url($template); $i = 1; foreach($all_url as $item){ echo $i.' : '.$item->ic_url.' 查看原页面'; echo '
'; $i++; } } } public function search_contents(){ $this->load->model('test_model'); $template = $this->input->post('url'); //构造一个页面 $html = ''; $html .= '

AH根据url查询所属页面

'; $html .= '
'; $html .= '输入url:'; $html .= '
'; echo $html; if(!empty($template)){ $all_url = $this->test_model->get_contents($template); $i = 1; foreach($all_url as $item){ echo $i.' : '.$item->ic_url.' 查看原页面'; echo '
'; $i++; } } } }