Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$r_queryt=mysql_query("SELECT SUM(bill_hrs)
FROM tbl_time
WHERE user_id='$user_id'
AND date >= '$from_date'
AND date <= '$to_date'
AND project='$projectr'");
$array = mysql_fetch_row($r_queryt);
$total = $array[0];