Welcome Guest, Not a member yet? Register   Sign In
converted to_excel plugin to helper to work in CI 2.0
#13

[eluser]swetha[/eluser]
The following are the code snippets..

Code:
/*export_view.php*/

<?php foreach($q as $row)
         print $row->fest_id;
         print $row->fest_name;
?>
<a >fest_id?&gt;/&lt;?=$row->fest_name?&gt;">Export</a>

          
/*export.php -- controller*/
function event_list()
    {
            $this->load->model('admin/export_model');
            $data['q']=$this->export_model->backup();
            $this->load->view('admin/export_view',$data);
    }
    
    function export_contacts($fest_id='',$fest_name='')
    {
        $this->load->database();
        $this->load->plugin('to_excel');
    
        $this->db->use_table('contacts');
        $this->db->select('*');

        $query = $this->db->query('SELECT * FROM contacts where fest_id=$fest_id');
       $filen=to_excel($query,$fest_name);
      
    }
/*export_model.php*/
function backup()
    {
         $this->load->database();
         $q=$this->db->get('fest');
         return $q->result();
  
    }
What is it that is wrong with this that I face the page not found error?? Need quick help..

Url where i get a 404 error : http://localhost/admin/export_contacts/1/fiesta


Messages In This Thread
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-18-2011, 08:00 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-18-2011, 08:02 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-18-2011, 08:32 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-18-2011, 08:46 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-18-2011, 08:47 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-18-2011, 08:53 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-18-2011, 09:15 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-22-2011, 11:24 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-22-2011, 11:28 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 04-22-2011, 11:30 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-08-2011, 08:01 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-08-2011, 08:03 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-08-2011, 09:38 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-08-2011, 10:22 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-08-2011, 01:09 PM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-08-2011, 01:39 PM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-08-2011, 02:01 PM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-08-2011, 02:02 PM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-08-2011, 02:05 PM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-10-2011, 01:02 PM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 06-10-2011, 01:10 PM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 03-28-2012, 09:23 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 12-27-2013, 03:45 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 12-29-2013, 11:44 AM
converted to_excel plugin to helper to work in CI 2.0 - by El Forum - 12-30-2013, 09:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB