CodeIgniter is a Model View Controller (MVC) based Framework. It is popular for creating websites and web based business systems and is the second most used PHP framework. When compared to other frameworks CodeIgniter takes a minimalist approach, making it lightweight and extremely adaptable.
Category: MySQL/MariaDB
MySQL and MariaDB are two distributions of the same relational database. In layman’s terms, this is the library that stores the data our systems use.
They’re used in many web based applications of today and offer an affordable and simple solution to storing and retrieving data. Both databases utilize SQL as the language to send and retrieve queries.
SQL is short for “Sequential Query Language” and is the predominate way for applications to request data from a relational database. In layman’s terms, its a language we use to get data from storage quickly. Sounds pretty basic right? We’ll not so fast. SQL suffers from a common, and preventable, security concern called SQL injections.… Read More »