Navigating: Home » Web Development Web Development This is one major reason I created Devsrealm, to share what I have learned with others in the web development scene. I’ll be covering PHP, JS, JS frameworks, CSS, and more. HTML (plain-text) Email Template For MauticMautic 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: You can use it how you see fit, but don’t change the <title>{subject}</title>mautic would automatically grab that for you. Method 2 This ... Read Full PostCreating 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 Post12345Next