INSERT ON DUPLICATE KEY UPDATE with CodeIgniter 4

I recently had to use a query with INSERT ON DUPLICATE KEY UPDATE, but CodeIgniter 4 does not have built-in support for this type of query because it is not available in all database drivers. ...

October 15, 2021 · 5 min

CodeIgniter 4 + Mix with versioning

Last time I showed you how to easily integrate Mix with CodeIgniter 4. This time we’ll complete the integration process by implementing a helper which will make using versioned assets very convenient and easy. ...

August 25, 2021 · 3 min

CodeIgniter 4 + Mix

Today we are going to look at configuring CodeIgniter 4 in conjunction with Mix. Mix is one of the components that comes with the Laravel framework. ...

August 23, 2021 · 2 min

Integrating CodeIgniter 4 with Auth0

Integration with Auth0 is quite simple and comes down to a few steps. I assume you already have your Auth0 account so you just need to install the library via Composer: ...

June 6, 2021 · 3 min

Upload files directly to S3 with Dropzone.js

Uploading files directly to S3 requires a few changes to the way Dropzone handles uploads, but it’s nothing particularly difficult. ...

May 9, 2021 · 4 min

UUID with CodeIgniter 4

Up until now, working with UUIDs and CodeIgniter 4 hasn’t been much fun, but that has now changed with the codeigniter4-uuid library. ...

April 24, 2021 · 1 min