PHP 8.0 was released recently at the time of this post is written. Surprisingly, Codeigniter 3 does not generate any error message this far in PHP 8.0.
Tag: CodeIgniter
How to Use Midtrans-PHP in CodeIgniter 3
Here is how to use Midtrans-PHP official library in Codeigniter 3 🙂
Enabling CodeIgniter $_GET
Here is how to enable CodeIgniter support to $_GET and still able to use the normal “SEO-friendly” URL working together. So you will get a URL like this http://www.example.com/index.php/the_controller/the_function/?some=thing&more=yes First approach is modify your “config.php” and change this line. $config[‘enable_query_strings’] = true; But this is not recommended because on pagination, you will get ugly URL.