programguru Posted March 7, 2009 Share Posted March 7, 2009 Hmmm... I don't see an out on this, but was wondering if you know of a function or method to do this business: My script works perfect with the exception of my empty() function, because I see the date() function creates a value regardless if my field $date_start (from my table) is in fact empty. I'm just trying to echo nothing if the value of $date_start is NULL (blank). Any ideas where to look on this one? .... $date_start = $row['date_start']; $date_end = $row['date_end']; $date_start_converted = date("M jS, Y", strtotime($date_start)); $date_end_converted = date("M jS, Y", strtotime($date_end)); if (empty($date_start_converted)) { $date_start_converted = ""; } .... Link to comment https://forums.phpfreaks.com/topic/148326-solved-check-date-w-emptynull-var/ Share on other sites More sharing options...
genericnumber1 Posted March 7, 2009 Share Posted March 7, 2009 Erm.. <?php $date_start = $row['date_start']; $date_start_converted = ""; if (!empty($date_start)) { $date_end = $row['date_end']; $date_start_converted = date("M jS, Y", strtotime($date_start)); $date_end_converted = date("M jS, Y", strtotime($date_end)); } ? Link to comment https://forums.phpfreaks.com/topic/148326-solved-check-date-w-emptynull-var/#findComment-778735 Share on other sites More sharing options...
programguru Posted March 7, 2009 Author Share Posted March 7, 2009 I see how that would work and why now my method was totally bunk. Nice logic. Link to comment https://forums.phpfreaks.com/topic/148326-solved-check-date-w-emptynull-var/#findComment-778737 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.