#software-development
Read more stories on Hashnode
Articles with this tag
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, 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...
Date() is a function we can use to display the date and time in a readable manner. Syntax date("Y-M-D"); This will display the year, month and day of...
In this post, we will be learning how to add code from another PHP file into your code. a.php <?php echo "BBBBBBB"; ?> It is possible to include all...