PHP supports date functions to handle date & time to implement and provide a method to convert human-readable dates to Unix Timestamp. One of those methods is strtotime().
Php
PHP Function Mktime() Tutorial with Example
The mktime() returns the Unix time stamp of the given argument. The result time stamp contains the number of seconds between the unix time stamp (January 1 1970 00:00:00 GMT) and the that date. If you will not provide any arguments then value will be set to the current value according to the local date […]
PHP Difference Between Two Dates
Today, I am going to talk to you about difference of days in two given dates using PHP. There are many methods to get days in PHP, You can use DATETIME() function to get days difference between two dates in PHP.
Simple PHP Login System Using MySQL and jQuery AJAX
This tutorial help to create a simple PHP script for the login system using MySQL and ajax. The authentication functionality is a very important feature of any web project.
Remove Special Character in PHP Using str_replace()
Today, I will discuss how to remove special characters from string in php using str_replace(), In order to do this task, PHP have str_replace() function to remove special characters from string str in PHP.