Tagged Questions
The date-of-birth tag has no wiki summary.
12
votes
17answers
2k views
“Date of birth” validation: How far/much would you go?
I'm quite anal about form validation. So while creating a validator for a "data of birth" (DOB) field in one of my current projects for a job application form (platform/language is neutral in this ...
10
votes
6answers
157 views
How to design Date-of-Birth in DB and ORM for mix of known and unkown dates
Note up front, my question turns out to be similar to SO question 1668172.
This is a design question that surely must have popped up for others before, yet I couldn't find an answer that fits my ...
6
votes
4answers
387 views
How would I determine zodiac / astrological star sign from a birthday in Python?
I am building a dating site in Django / Python. I have birthday dates and need to show what the person's Zodiac sign is based on their birthday.
Anybody done this before? What would be the most ...
4
votes
3answers
430 views
ASP.NET Datepicker without calendar visualization
I'm working in C# / ASP.NET 3.5 and want to enable users to enter their date-of-birth. I've tried the asp:Calendar web control for this, and also considered using the jQuery-UI datepicker, and ...
4
votes
5answers
871 views
Html Birthdate input usability best practice
I am going to implement standard functionality - birthdate input on web form for PC.
There are lots of interfaces how to implement this.
Date picker (OMG, I can't stand picking date with it. Too ...
3
votes
4answers
191 views
Postgres birthdays selection
I work with a Postgres database. This DB has a table with users, who have a birthdate (date field). Now I want to get all users who have their birthday in the upcoming week....
My first attempt:
...
3
votes
1answer
402 views
Regex for Java SimpleDateFormat pattern (could be specific for birth)
What is a good regex fo Java SimpleDateFormat pattern?
Story: I have problem with setting eclipse birth date format patter with DateTimeFormatValue, no exceptions(feedback form QA only).
So, the ...
2
votes
3answers
100 views
How to store birthdays without a year part?
Similar question: Postgres birthdays selection
We're designing a new feature: we'll be storing the month and day parts of people's birthdays, but not the year. So a user born on christmas will have ...
1
vote
3answers
284 views
Get birthday for each contact in Android application
In my android application, I read out all the contacts with the following code:
ContentResolver cr = getContentResolver();
Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI, null, null, ...
1
vote
4answers
357 views
How can I convert a birthday string into age in actionscript3?
For example if I was given the string "01/01/1980". How could I then get the current date, then figure out how old someone is, and then just return how many years old they are?
I saw a topic on this ...
1
vote
3answers
384 views
PHP: calculating birthday from age
Yes, this may sound strange.
In the advanced profile searching form, where you can filter by age.
Now you would type 18 or some other age in the field.
I am storing the birthdays, in the mysql db, ...
0
votes
2answers
95 views
matching dates-birthdays
I am doing a mysql query and trying to get birthdays that match the current day and month.
Here is what I was trying but realized that it wont work properly:
$birthdays = $wpdb->get_results(" SELECT ...
0
votes
2answers
2k views
How to collect Date of birth from php form and insert into mysql?
I am new to programming, have done a few things but i have no idea how to collect dob information. How do i collect it from a form and how do i insert it? Do i use three fields: month/day/year and ...
0
votes
3answers
64 views
Do users get put off if they enter their FULL Date of Birth in a form?
I wonder if it is a good idea (and in a quirky funny way) to just get the user to enter this:
Month-of-Birth: (Month) (Year)
Where (Month) and (Year) is a drop down box which user just pick the ...