
Hi,
How to create a small application to know the sunrise time of specific date as well as the locations. So, Please provide any online help. so, that i will manipulate the application.
Thanks,

Hi,
I hope this example will solve your query. In this example about how to know the sunrise time of given date and location.
The Syntax and Example of Sunrise Time and Location of given date.
<?php
date_default_timezone_set('Europe/London');
$datetime = date_create('2008-08-03 14:52:10');
echo date_format($datetime, 'jS, F Y') . "\n";
echo date_format($datetime, DATE_ATOM);
?>