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. Object 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 PostArrays in PHPAn 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 way to access the value. Indexed Arrays A simple analogy of understanding how array work is picturing ... Read Full PostGuide To Functions In PHPIn 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 a single unit, and you can then call the unit whenever and wherever it is needed. If you’ve ... Read Full PostControl Structure: Guide To Learning Loops In PHPIn 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 write code that would execute more than once without the need of writing the code ... Read Full PostConditional Statements In PHPConditional statements alter the program flow, and by using a conditional flow, you can make your program make choices about what should happen based on certain conditions. We can achieve this by using a logical expression, and an example of such is if-else-statement, switch statement, e.t.c. Before we get into logical expression, let’s understand logical operators ... Read Full PostPrevious12345Next