Reputation: 6085
i have got third polling scripts which has it's own admin panel, i want to integrate with my existing codeigniter site, what is the best way to iplement it ?
Upvotes: 0
Views: 3772
Reputation: 2716
application/third_party
'/third_party/script_folder/script.main.class.php';
Upvotes: 0
Reputation: 301
You should put the polling script into application/libraries
and then initialize it using $this->load->library('yourclass');
Here is the documentation from the user guide.
Upvotes: 1