views:

34

answers:

5

I want to make an if statement that only runs if the datetime value is NOT null (0000-00-00 00:00:00)

I have passed the value via a query into a variable but how do i determine if it equals 0000-00-00 00:00:00?

$query = "SELECT * FROM stats WHERE member_id='" . $_SESSION['SESS_MEMBER_ID'] . "' "; 
$result = mysql_query($query);

while($row = mysql_fetch_array($result, MYSQL_ASSOC)) 
{
  $money = $row['money'];
  $bank_money = $row['bank_money'];
  $ap = $row['ap'];
  $exp = $row['exp']; 
  $last_ap_update = $row['last_ap_update'];
} 

if ($last_ap_update != ){ //Can i verify its NULL-ness here so i can run this if stament or run else?
}
A: 

$last_ap_update != strtotime("0000-00-00 00:00:00")

fredley
+4  A: 

Why not directly compare it :

if ($last_ap_update != "0000-00-00 00:00:00")
{
      //do whatever.
}
shamittomar
ohhhh i didnt know. I though datetime values couldn't be compared with strings. Are datetime values just formatted strings?
@shorty876: Yes.
shamittomar
sweet thanks!.too short.
You're welcome.
shamittomar
+1  A: 

You store it into a variable so you can use it as a string

if ($last_ap_update != "0000-00-00 00:00:00"){
}
krike
A: 
if ($last_ap_update != "0000-00-00 00:00:00"){
    [process]
}
Daniel Hanly
A: 

Why not adding the comparison to your sql statement?

$query = "SELECT * FROM stats WHERE member_id='" . $_SESSION['SESS_MEMBER_ID'] . "' AND  last_ap_update > 0";

Yes, you can use > 0 but you can also use <> '0000-00-00 00:00:00' if you prefer that.

Kau-Boy