Top "Codeigniter" questions

CodeIgniter is an Application Development Framework - a toolkit - for people who build web sites using PHP.

Directory index forbidden by Options directive

I'm using the dompdf plugin for codeigniter: http://codeigniter.com/wiki/PDF_generation_using_dompdf/ to generate pdfs from a …

php apache .htaccess codeigniter
Only variable references should be returned by reference - Codeigniter

After the server PHP upgrade I am getting the following error with PHP Version 5.6.2 on Apache 2.0 A PHP Error was …

php apache codeigniter apache2 codeigniter-2
Codeigniter: does $this->db->last_query(); execute a query?

Does query execution happen at the get_where() clause of the following codeigniter active record statement? $this->db->…

codeigniter activerecord codeigniter-2
insert multiple rows via a php array into mysql

I'm passing a large dataset into a MySQL table via PHP using insert commands and I'm wondering if its possible …

php mysql codeigniter insert bulkinsert
CodeIgniter activerecord, retrieve last insert id?

Are there any options to get the last insert id of a new record in CodeIgniter? $last_id = $this->…

php codeigniter
How to set proper codeigniter base url?

when I had my site on development environment - it was url: testurl.com Now on production server my codeigniter …

php codeigniter
CodeIgniter - return only one row?

At the moment if I am doing a query on the database that should only return one row, using: ...query …

database codeigniter
Fatal error: Call to undefined function base_url() in C:\wamp\www\Test-CI\application\views\layout.php on line 5

Hello I am new to CodeIgniter and PHP, I am trying to setup it for the firs time, but it …

php codeigniter
CodeIgniter: How to get Controller, Action, URL information

I have these URLs: http://backend.domain.com/system/setting/edit/12 http://backend.domain.com/product/edit/1 How to get …

php codeigniter codeigniter-2
CodeIgniter - how to catch DB errors?

Is there a way to make CI throw an exception when it encounters a DB error instead of displaying a …

php codeigniter