| 
<?php
include 'php_light_time_calculator.php';
 $obj=new LightnShade;
 $a=$obj->dayLight(22.9666666666667,-82.15,"America/New_York");
 ?>
 <?='Current time: '.$a['now']?> <br>
 <?='Sunrise today: '.$a['sunrise']?> <br>
 <?='Sunset today: '.$a['sunset']?> <br>
 <?='Hours of Light: '.$a['lightHours']?> <br>
 <?='Remaining Hours of Light : '.$a['lightHoursLeft']?> <br>
 <?='Hours of Dark: '.$a['darkHours']?> <br>
 <?='Remaining Hours of Dark : '.$a['darkHoursLeft']?> <br>
 <?='Star Above our heads: <br>'.$a['Star']?> <br>
 
 |