New Post Best Way To Implement a Non-Breaking Friendly URL In PHP or Laravel or Any Language I was working on the link structure of my new Laravel app, and out of the blue I said: “What would happen if a user changes the slug of a post?” First Attempt – 301 Redirection The first solution I […]View Full Post
HTML (plain-text) Email Template For Mautic Mautic doesn’t support sending plain-text email yet, but you can still mimic plain-text kinda email, here is an example: I’ll show you two ways to use this…. Method 1: Code Mode Go-to mautic code mode, and use the following code: […]View Full Post
Creating a Tiny PHP MVC Framework From Scratch In 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 […]View Full Post
PDO: Querying Data From Database – PHP MariaDB/MySQL In 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 […]View Full Post
Abstract Classes, Interfaces and Traits In PHP So 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 […]View Full Post
Static Methods and Properties In PHP We’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 […]View Full Post
Object Oriented Programming Intro in PHP We 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, […]View Full Post
Arrays in PHP An array is an orderly arrangement of a collection of multiple values, that is the basic explanation I can up with. You can think of them as a collection of values stored in a specific variable, and also provides a […]View Full Post
Guide To Functions In PHP In this guide, we would look at functions in PHP…so…first Intro To Functions Functions are modular building blocks for creating powerful and modular scripts, using function makes it easy to isolate a code since it would be packaged up into […]View Full Post
Control Structure: Guide To Learning Loops In PHP In our previous guide, we’ve seen conditional statements in PHP that lets us alter the program flow base on conditional choices, in this guide, we would look into the different types of loops in PHP. Loops give us the ability to […]View Full Post