Quantcast
Channel: PHP Freaks: PHP Help
Viewing all articles
Browse latest Browse all 13200

Is it your birthday?

$
0
0

Hi Guys.

 

Im just trying to find a list of people with birthdays coming up in the next 14 days from a table in my db.  I'm storing birthday as a unix timestamp.  Currently I have one birthday coming up on the 10/12/1984   or unix time would be  471484800.  My query is returning 0 as the number of birthdays when it should say 1.

 


mysql_select_db($database_dbconnect, $dbconnect);
$query_Birth = "SELECT StaffDOB FROM Staff WHERE StaffDOB  BETWEEN UNIX_TIMESTAMP(CURDATE()) AND UNIX_TIMESTAMP(ADDDATE(CURDATE(), INTERVAL 14 DAY))";
$Birth = mysql_query($query_Birth, $dbconnect);
$totalRows_Birth = mysql_num_rows($Birth);
 
 
echo $totalRows_Birth;
 


Viewing all articles
Browse latest Browse all 13200

Trending Articles