Click to See Complete Forum and Search --> : find next day in php


kku
February 27th, 2005, 12:01 PM
how we can access next date using php.
example if current date is friday then next day should be satarday

svenhag
February 27th, 2005, 12:41 PM
Take a look at this http://se2.php.net/manual/en/function.date.php

bigBA
February 28th, 2005, 01:15 AM
$sNextDay = date('l', mktime( 0,0,0, date('m'), date('d')+1, date('Y') ));