Simple Events Add On: Keeping Past Dates
Permalink<div id="start_date">
<b>Date:</b> <?php echo date('F j, Y', strtotime($sdt)) ; ?>
</div>
<div id="datespan">
<?php
if ($edt > $sdt){
if ($eurotime==1){
echo date('Y/m/d', strtotime($sdt)).' - '.date('Y/m/d', strtotime($edt)) ;
}else{
echo date('m/d/Y', strtotime($sdt)).' - '.date('m/d/Y', strtotime($edt)) ;
}
}
?>
</div>
Chad