CodeIgniter
                                
                                
                                
                                    CodeIgniter copied to clipboard
                            
                            
                            
                        Open Source PHP Framework (originally from EllisLab)
With CI 3.1.13 on PHP 8.1, I get this error on this call: `$this->pagination->create_links();` There is no such problem on PHP 7.4 ``` An uncaught Exception was encountered Type: ErrorException...
While deploying a project based on CI3 on sourceforge.net web servers, I faced a problem with session save path. sourceforge.net's web servers run PHP 7.1 and are configured with `session.save_path`...
I have page/view that calls twice `$this->pagination->create_links();` ```php ``` However, only the first call really reflects the new state: if I went to page 2, it shows that I'm on...
word_wrap in Email.php (library) does not handle multibyte characters well. It made long line of plaintext Chinese characters look weird when it cuts multibyte characters in the middle.
Despite the docs saying: > Quotes are converted to correctly facing curly quote entities, except those that appear within tags format_characters() doesn't work in the same way. For example, this...
I'm using CI 3.1.10 and when I run a `get` against a database with the oci8 driver I have to manualy run `->load()` against `OCI-Lob` objects. I think this is...
I want concat two fields with comma: ``` php $this->db->select("CONCAT(nev,',',id_tanar)",false)->from("tanar"); ``` And when I use $this->db->get() and after that $this->db->last_query(), it shows: ``` php SELECT CONCAT(nev, ', ', id_tanar) FROM...
This PR address the 2nd feature request from this #5641 issue.
A PR for this issue: https://github.com/bcit-ci/CodeIgniter/issues/4477 This PR simply removes the HTML from `libraries/Profiler.php` , and instead reads from a separate HTML template file `application/views/profiler/profiler_template.php` . Developers will be free...
As as CI documentation says > Under CLI, the Session library will automatically halt itself, as this is a concept based entirely on the HTTP protocol. But PHP documentations says:...