PHP
-
Apr- 2020 -21 April
What is the difference between PHP echo and print ?
In PHP, the two basic constructs are used to get outputs which are echo and print. If firs of all…
Read More » -
19 April
Drawbacks of using PHP
As we all know PHP is the very popular server-side programming language which is used to design website. There are…
Read More » -
Mar- 2020 -18 March
Star Triangle in PHP
The star triangle in PHP is made using for and foreach loop. There are a lot of star patterns. We’ll…
Read More » -
Feb- 2020 -16 February
How to add days in the current date in PHP?
If you want to add days in current date then simply get a date in PHP with the date(); function,…
Read More » -
Jan- 2020 -26 January
How to show the current date and time in PHP?
Php has a pre-defined function for date and time that is “date”, <?php $currentDateTime = date('Y-m-d H:i:s'); echo "Your current…
Read More » -
25 January
PHP Syntax and basic program.
Basic PHP Syntax A PHP script can be placed anywhere in the document. A PHP script starts with <?php and ends with ?>:…
Read More »