im trying to get the date diff:
<?php
$datetime1 = date_create(date('d - M - Y'));
$datetime2 = date_create($date);
$interval = date_diff($datetime1, $datetime2);
$diff = $interval->format('LISTED %R%a DAY(S) AGO');
?>
it works in my localhost host.. but when I upload and run it online it get this error :
Fatal error: Call to undefined method DateTime::diff()
please help; =(
thnx