
PHP | date() function
By using the PHP date() function we can find the current date and time.
<?php
echo date(“d-m-Y”); //This will print today date.
echo date (“d-m-Y h:i:s”) // This will print today’s date with current time.
?>
By using the PHP date() function we can find the current date and time.
<?php
echo date(“d-m-Y”); //This will print today date.
echo date (“d-m-Y h:i:s”) // This will print today’s date with current time.
?>