Your Ad Here

Home » mysql, PHP Code »

0

Hello friends,

The following query will add some times to mysql date column.

Get the today date :

$date = date(‘Y-m-d H:i:s’);

Convert it into strtotime and add which one we have to add, here i am going to add 30 minutes to existing time.

$newtime = strtotime($date . ‘ + 30 minutes’);

Covert the newtime to date format like below.

$newtime = date(‘Y-m-d H:i:s’, $newtime);

Here we will get the answer , same thing we can apply for mysql datetime column field also.


You may like these posts

    Select the age from birthday in mysql ?Searching for existing domain names?Auto post into Blogspot using php code?How to get complete information about server using php code

 

Leave a Reply