// process date **********************************
$closed_date = date("d/m/Y" ,strtotime($row['closed_date']));
echo '<h1>'.$closed_date.'</h1>';
closed_date is set in the database as smalldatetime. Also given NULL value.
If the field is NULL today's date is returned. Why is this?
If the field is NULL I want a blank value displayed.
How is this done? Working on MS SQL Server.
Thanks.