Thanks a lot. I did look at the mysql page before, but I didnt really understand how to use the info until now.
Search found 6 matches
- Mon Oct 21, 2002 7:49 am
- Forum: Databases
- Topic: How do I get data from mysql based on week number?
- Replies: 2
- Views: 1023
- Mon Oct 21, 2002 6:48 am
- Forum: Databases
- Topic: How do I get data from mysql based on week number?
- Replies: 2
- Views: 1023
How do I get data from mysql based on week number?
I want to extract data from a mysql table based on week numbers. something like this: select * from table where (date = week 42) I know how to do it in php, but I there is no need to load the whole database into memory, when I know it can be done with a simple sql statement. I just dont know how, so...
- Mon May 27, 2002 4:23 pm
- Forum: PHP - Code
- Topic: How do I show age from a birthdate?
- Replies: 4
- Views: 2526
- Mon May 27, 2002 7:42 am
- Forum: PHP - Code
- Topic: How do I show age from a birthdate?
- Replies: 4
- Views: 2526
- Mon May 27, 2002 7:32 am
- Forum: PHP - Code
- Topic: I'd like to know the average OS for a web programmer
- Replies: 21
- Views: 11677
- Mon May 27, 2002 7:14 am
- Forum: PHP - Code
- Topic: How do I show age from a birthdate?
- Replies: 4
- Views: 2526
How do I show age from a birthdate?
Hi. I need to show how old a person is from his/her birthdate. The birthdates come from a mysql db. I found this script on php.net, but its not working 100% ----- <?php $nowdate = mktime(0,0,0,date("m"),date("d"),date("Y")); $birthday = mktime(0,0,0,"05"...