can i get date time every minute in 2d array?i'm a beginner php developer.hope sme one can tell or share any idea.
let say my input as:
$startdate = 2013/7/01;
$enddate = 2013/7/02;
how can i have function as :
getMinuteRange($startdate, $enddate );
and i need the output of the function as:
Array (   
[0] => Array
    (
        [0] => 01/7/2013
        [1] => 12.00 a.m
    )
[1] => Array
    (
        [0] => 01/7/2013
        [1] => 12.01 a.m
    )
[2] => Array
    (
        [0] => 01/7/2013
        [1] => 12.03 a.m
    )
.
.
.
[2879] => Array
    (
        [0] => 02/7/2013
        [1] => 11.59 p.m
    )
)
 
     
    