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.
and not YYYY-MM-DDYYYY/MM/DD
$result = mysql_query("select start_date, end_date from table where uniqueID='someval'");
list($start_date, $end_date) = mysql_fetch_assoc($result);
//convert to standard format
$start_date = str_replace('/','-', $start_date);
$end_date = str_replace('/', '-', $end_date);
//convert to unix dates
$_start_date = strtotime($start_date);
$_end_date =strtotime($end_date);
echo "Difference is " .($_end_date - $_start_date) . " seconds";
Select
DATEDIFF(
REPLACE (end_date, '/', '-'),
REPLACE (start_date, '/', '_')
) AS NumDaysDifference
FROM
table
WHERE
uniqueID = 'somevalue';