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 = ""; } .... Quote Link to comment 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)); } ? Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.