Navigating: Home » Web Development » PHP Tutorials PHP Tutorials PHP is a server-side programming language that allows web developers to create dynamic content that interacts with databases. I created this page to documents all I have learned on PHP, instead of reading the manual every time I need to use a specific function or I wanna learn a certain syntax, I’ll hop in here to find the details, and the bad thing about me is that I can only understand my very own explanation 🙂 Here are guides to follow if you are new to PHP… Beginner Tutorials On PHP Getting Started With PHP (Introduction) Exploring Data Types, Variables and Operators in PHP Conditional Statements In PHP Control Structure: Guide To Learning Loops In PHP Guide To Functions In PHP Arrays in PHP Advanced Tutorials On PHP Object-Oriented Programming Intro in PHP Static Methods and Properties In PHP Abstract Classes, Interfaces, and Traits In PHP PDO: Querying Data From Database – PHP MariaDB/MySQL Creating a Tiny PHP MVC Framework From Scratch Creating a Tiny PHP MVC Framework From ScratchIn this guide, we would go over creating a tiny PHP MVC Framework, this would sharpen your knowledge on how major frameworks (e.g Codeigniter or Laravel) works in general. I believe if you can understand the practical concept in this guide, you’ll be able to relate the logic to the aforementioned framework real quick. Basics of ... Read Full PostPDO: Querying Data From Database – PHP MariaDB/MySQLIn this guide, you’ll learn how to query data from a MariaDB database using PHP PDO, plus an understanding of how the nuances work. So, here are the details… I have a table cmusicin marn_melodicdatabase, in short, here is how the table looks if I use the SELECT statement directly from mariadb client: Suppose I want to SELECT FROM cmusic ... Read Full PostAbstract Classes, Interfaces and Traits In PHPSo far, we’ve covered OOP basics in PHP, and Static Methods, & Properties, in this guide, we would cover abstract classes in PHP. What is an abstract class? Just like I explained in the OOP basics, I said a class describes the concept of creating an Object, there are not necessarily the objects themselves, but as a code ... Read Full PostStatic Methods and Properties In PHPWe’ve recently dived deep into the basics of Object-Programming language in PHP, in this guide, we would look into static methods and properties. In the OOP guide, I said class describes the concept of creating an Object, there are not necessarily the objects themselves, but as a code template used to create or generate one or ... Read Full PostObject Oriented Programming Intro in PHPWe recently went through the understanding of functions in PHP, well, that is one way of writing a PHP code, and the other way is using objects. In object-oriented programming, objects include data and behavior (code), its methods of operation, and how it interacts with other objects. The definition is a bit blurry…so… Let’s dive in a ... Read Full Post123Next