Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
how to match date of birth with corrent date.
Old 05-27-2005, 07:42 PM how to match date of birth with corrent date.
skima's Avatar
Average Talker

Posts: 15
Location: Lagos, Nigeria
Trades: 0
Please I want to display information from the database where date of birth has been stored. But i want to display the one with its day equals today's date.
This is the date formate i stored 0000-00-00. yy-mm-dd.

can anyone help out.
skima is offline
Reply With Quote
View Public Profile Visit skima's homepage!
 
 
Register now for full access!
Old 05-28-2005, 02:33 AM this might help or give you a head start
Experienced Talker

Posts: 32
Trades: 0
PHP Code:


 <?php ////// Check BirthDays: Error Code = 1
   
$today split("-"date("Y-m-d"));
  
$result mysql_query("SELECT Member, FirstName, Birthday FROM members;") or die ("Error Code #1.");
  while (
$row mysql_fetch_array($result)) {
      
$birthday split("-"$row[Birthday]);
      if (((int)
$today[1] - (int)$birthday[1] == 0) && ((int)$today[2] - (int)$birthday[2] == 0)) {
        
$age = (int)$today[0] - (int)$birthday[0];
        print 
"<tr bgcolor=\"#333333\" bordercolor=\"#333333\"><td colspan=\"5\" width=\"10%\">";
        print 
"<p>Hay what up <b>".$row[FirstName]."</b>, it's ya' birthday!!!<br>";
        print 
"who turns ".$age." today!<br></p></td></tr>";
        }
   }
  
  
?>

That might help
rcubes85 is offline
Reply With Quote
View Public Profile
 
Old 05-30-2005, 10:17 PM Am try it out
skima's Avatar
Average Talker

Posts: 15
Location: Lagos, Nigeria
Trades: 0
Thanx for response. am trying it all out.
skima is offline
Reply With Quote
View Public Profile Visit skima's homepage!
 
Old 05-31-2005, 01:09 AM
skima's Avatar
Average Talker

Posts: 15
Location: Lagos, Nigeria
Trades: 0
Thank you rcubes85. It really works.
__________________
...thinking positively, providing solutions. live is good.
Please login or register to view this content. Registration is FREE
skima is offline
Reply With Quote
View Public Profile Visit skima's homepage!
 
Old 05-31-2005, 01:47 AM
Experienced Talker

Posts: 32
Trades: 0
no problem glad it does
rcubes85 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to how to match date of birth with corrent date.
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.29681 seconds with 12 queries