Hi,
I have 2 dates in UNIX timestamp format:
$start = mktime(0,0,0,$_POST["sm"], $_POST["sd"], $_POST["sy"]);
$end = mktime(0,0,0,$_POST["em"], $_POST["ed"], $_POST["ey"]);
I need to list each day between those dates. For example, if my start date was 6-28-03 and my end date was 7-2-03, i would need:
6-28
6-29
6-30
7-1
7-2
Any idea how to do this? I can get the number of days between the dates, but don't know how to list each one. Thanks.