CodeIgniter 4 anchor() URL Helper function

Here as of late, I’m leaning on every piece of built-in functionally of the CodeIgniter 4 framework I can. One I’ve been using a great deal is the anchor() URL helper function. Continue reading to learn more about this function…

(more…)

Use MySQL to generate MySQL for Admin tasks

I recently learned how to use MySQL to generate MySQL statements for several admin-type Data Definition Language (DDL) SQL queries I needed to execute on the server. For many DBA’s this is likely nothing new and in fact, is a well-used tool in their kit. However, I mostly focus on developer-related tasks, so it is a fresh-in-my-mind learning experience. Continue reading for more information…

(more…)

Top 10 Best Jobs In Cloud Computing

The 21st century is an era of colossal technological advances, rapid development, and new directions. And as a result of these unprecedented changes, there are new demands in the labor market, new professions, and career opportunities. Today Cloud Computing jobs top the list of most demanded and highly paid jobs. But what exactly is Cloud Computing and how does it work, why is Cloud Computing important, and what are its advantages? And most importantly, which are the best and competitive jobs in Cloud Computing today?

(more…)

MySQL Table DDL file with phpMyAdmin


If you need a structure only .sql file of a MySQL tables’ Data Definition Language (DDL), phpMyAdmin makes this super-easy with just a few clicks. Continue reading and learn how…

(more…)

Medium Cross-post – CodeIgniter 4 CRUD: Read

Storing data is but one part of many in application development. Once data is stored, interested parties will likely want to see it. This is the Read aspect of CRUD – reading (or viewing) the data. Continue reading and see examples using CodeIgniter 4 built-in Model methods…

(more…)