PHP -Building Blocks If –else statements if…else statement – executes set of codes if a condition is true and another code if the condition
Tag: free php tutorial
PHP – Strings Functions
PHP – Strings Functions String functions are the most important functions frequently used in PHP. String is the sequence of characters, like “Let’s learn
Loops in PHP
Loops in PHP Loops are by far the most powerful component of PHP. A loop is simply a set of statements repeated more than
PHP – Strings Functions
PHP – Strings Functions String functions are the most important functions frequently used in PHP. String is the sequence of characters, like “Let’s learn
Error Handling in PHP
Error Handling in PHP Error handling is the process of catching errors from the program and then taking appropriate action. Before proceeding for error
Loops in PHP
Loops in PHP loops are by far the most powerful component of php. aA loop is simply a set of statements repeated more than
Error Handling in PHP
Error handling is the process of catching errors from the program and then taking appropriate action. Before proceeding for error handling you should get
Data types in Mysql / Mariadb
Numeric Data Types: INT (Integer): Int data type represents an integer of normal size. So simply it can used to store numeric value. There
A do-while loop
The do…while loop example: <?php $i = 1; Do { $i++; echo $i . “<br>”; } while($i <= 3); ?> Output: 2 3 4
The While loop
A While loop is used when we have to repeat a set of statements as long as the condition is false. It could be