#software-engineering
Read more stories on Hashnode
Articles with this tag
In this post, we will be learning about JavaScript switch statements. A Switch statement takes a variable, checks its value, and then depending on the...
In this tutorial, we will be learning about object-oriented programming and how it is implemented in PHP. What is Object-Oriented PHP...
In this article, we will be learning about if, else, and if-else statements. These are the most commonly used conditional statements and are one of...
In this tutorial, you will be learning how to declare constants in PHP. Declaring and Using Constants So in the previous tutorial, you learned about...
In this tutorial, we will be going over some basic syntax of PHP. PHP Basic Syntax The default syntax of PHP starts with <?php and ends with ?> Any...
In PHP, we have two ways to get output: we either use the keyword “echo” or “print”. These two are technically not functions, so you can use them...