Hay, i have a database holding events. There are 2 fields \'start\' and \'end\', these contain timestamps. When an admin enters these dates, they only have the ability to se
Try this:
while($date_start <= $date_end) { echo date('M d Y', $date_start) . ''; $date_start = $date_start + 86400; }
Hope this helps !