The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
40 views

How do I show the age of someone from a database? [duplicate]

A friend of mine gave me this code, but I can't seem to get it to work. It keeps telling me that I have an undefined variable, but I have tried to define it several different ways, but it doesn't show ...
0
votes
1answer
30 views

Excel - how to calculate age from 'Age in Months'

If a person's age in months is 140 how could I calculate there age in Years and Months? So for example I would want to see: 11 Years 8 Months
1
vote
3answers
63 views

Finding out Age in Months and Years given DOB in a CSV using python

I making several adjustments to an automatically gennerated CSV report. I am currently stuck on a part where I need to take a patient's DOB and convert that into an Age in Months and Years. There is ...
0
votes
1answer
11 views

get Teacher Superannuation age in sql query

Thanks in advance : please help me out wirting a sql query to find the supperannuation date of of an employee i have to get all those employee wich are going to be 60 years in age on different dates ...
0
votes
1answer
21 views

PostgreSQL set a table age based on a date

I've run into a problem with my postgreSQL database. I have a table with a name, date of birth, and age. CREATE TABLE guy (name VARCHAR(10), dob DATE, ...
0
votes
1answer
91 views

Minimum Age Verification GUI C#

i am trying to verify that a customer is at least 25, in order to rent a car. I believe i have the right code to calculate age in my customer class, but it is not actually verifying it in my code for ...
-4
votes
2answers
72 views

Age Calculator in Javascipt

I have this codes, this code must be able to compute the age of the user and It must be displayed on the text box provided and the age must change if the user changed his birthdate. but this code does ...
3
votes
4answers
68 views

Age Groups stats with PHP and MYSQL

I want to display users stats on my website, returning the percentage of age groups like : -13 years : $percent % 13-15 years : $percent % 15-20 years : $percent % 23+ : $percent % In my mysql ...
0
votes
0answers
23 views

Accurately Verify Age

Is there a way to accurately verify age online? I have considered verifying using Credit Card data however I read that very few banks allow access to personal data. I have also considered ...
-1
votes
3answers
37 views

How should I go about making a country specific age gate?

I've created an age verification splash page for a liquor company using PHP, but didn't consider different legal drinking ages across the globe. What's the easiest way to have my age gate check for ...
-1
votes
1answer
231 views

Under 18 for assistance [closed]

When I go to settings in order to change my year if birth, an error message pops up saying Under 18: You are under 18 years old and need to change your date of birth, or need to change your ...
-1
votes
1answer
131 views

Validate age restriction in ASP.NET [closed]

I am new to ASP.NET and I want to set the RangeValidator for verifing the date of birth who is above 18. I had set it, but it is not working. How to resolve it? <asp:RangeValidator ...
0
votes
1answer
599 views

VB.NET/ASP.NET - Calendar Control - Selecting years

How is it possible to let the user choose the year from the Calender Control in ASP.NET? Currently, the calender allows you to scroll left to right (previous month - next month), so, if for example, ...
0
votes
0answers
103 views

HTTP Referrer through Age Gate

I have an age gate set up on my site, so that users under 17 can't enter the site, but I want people, who have bookmarked a specific link to be able to go to that link after passing through the age ...
1
vote
1answer
99 views

Calculate age from age given before

I am developing an Android app in which I have a module for cattle management. Here an user can add some data(Type,Age,Gender etc.) about his/her animals. Here suppose user has entered age of his ...
1
vote
4answers
504 views

Calculate age (jQuery or PHP) based on date of birth [not based on user input]

I am looking for a JavaScript or PHP script that allows me to calculate somebody's age based on his/her date of birth in the mm/dd/yyyy format. I found this very helpful link "Calculate age in ...
0
votes
1answer
60 views

How to make an age calculator app with UIPickerView?

I'm trying to make an age calculator app with UIPickerView. I have the code to do the calculations, but how do I insert them to work with a UIPickerView? The age calculation code is in an NSString - ...
2
votes
3answers
220 views

Calculate age with PHP in YYYY MM DD format

I'm trying to get this code to calculate the age from a field in a form. <?php $birthDate = "$dob"; $birthDate = explode("-", $birthDate); $age = (date("md", date("U", mktime(0, 0, 0, ...
0
votes
2answers
47 views

How to find users aged between 25 and 30 when the birthdates are stored as type “date” in MySQL?

I've been informed on SO before that the correct way to do this would be: WHERE birth_date BETWEEN date_sub(curdate(), INTERVAL 25 YEAR) AND date_sub(curdate(), INTERVAL 30 ...
-3
votes
2answers
325 views

Calculate age from date of birth which is in mysql using php [duplicate]

When a user registers on my site, their birth date is stored in a mysql database. I'm using the DATE datatype for birth date. How do I calculate the users current age?
0
votes
1answer
96 views

Is there a way to get the case Age using salesforce SOQL?

I'm using the SF Rest API to run some SOQL queries.. running a query on the Case object, trying to get its current Age (= the amount of days passed since the case was opened). Is there a way to get ...
0
votes
0answers
159 views

adding age verification to magento

Just want to know the best way to put a age gate to my magento website. Preferably with javascript, with the use of cookies. Don't wanna go in for PHP as it will hurt the SEO. I'd like to do it on my ...
0
votes
1answer
544 views

Javascript/jquery age verification popup for magento

Okay, so I tried to integrate this datepicker to my magento page for the purpose of age verification. I have successfully added the required CSS and jQuery script files to the head section of my ...
0
votes
2answers
216 views

Automatic Age Calculation ASP.Net

Please see the figure below. I want to automatically count the age of the user by inputting their birthday information. See the figure below for more explanation. Here's my full code of ...
0
votes
0answers
120 views

calculate age dynamically, and then group by it, SSAS

The question seems to be simple at first sight, but it is not quite simple for me. So, I have two dimensions - Customers with "id" and "date_of birth" attribute, and Dates with all the dates from the ...
0
votes
0answers
57 views

GDF File for WinJS

I have a game at Windows 8 Store, and i need to add the GDF Dll. I did my dll correctely, this is my dll structure: This is my RC File: ...
2
votes
3answers
166 views

Return JavaScript age calculation to screen

Using HTML 5, CSS, JavaScript and JQuery to create a web application. I have used the new Date() function in order to generate today's date. I have also used the JQuery "datepicker" function in order ...
0
votes
0answers
19 views

Sharing a age restricted Facebook app with users under 21 [duplicate]

I have a Facebook App which is only for users over 21 years of age. Is there a way to prevent sharing the App with users under 21? Thank you
1
vote
1answer
43 views

My site is asking for age verfication?

This is a duplicate of: This question without any answerers Just so you're aware. Details So my site is a game site with questions. These questions contain swear words. This is not an adult site. It ...
0
votes
1answer
32 views

Targeting age when posting to a page using Graph API

I want to target fans by age when adding a Post to a facebook page using Graph API , I think I can't use the 'targeting' field because it mentions that it's for targeting countries, cities, regions or ...
-6
votes
1answer
154 views

Finding Date of Birth given age in months [closed]

I'm really stuck with calculating date of birth given a persons age in months. Currently, I'm using C# to do that. However, failed to understand the logic. Thanks in advance
-2
votes
1answer
54 views

Function which asks for age

I need this to ask for an age, but if the age is under 11 or over 100 to reject it and to also reject anything but integers. If a number put in is out of the given range or isn't an integer I need it ...
1
vote
1answer
317 views

PHP Validate required field + age validation in one function

I have a registration form with a required date of birth field. <tr> <td><span class="required">*</span> <?php echo $entry_dob; ?></td> ...
1
vote
2answers
112 views

Restrict users from editing post based on the age of the post

In Wordpress, how can I restrict users (based on Capabilities) from editing their published posts after a custom amount of time. For instance, a user that can publish_posts (authors) can not edit a ...
0
votes
4answers
324 views

Get Age from DOB in MySQL

I'm trying to show my members age in profile page. in php file i just added this code to show users birth day: $data = $db->super_query( "SELECT dob FROM dle_users" ); $tpl->set("{bdate}", ...
5
votes
2answers
274 views

Android How to change Total number of days into years,months and days exactly?

i am doing an app that is related to get the age of a person according to the given input of birthday date. for that i am getting the total number of days from that date to the current date from the ...
1
vote
1answer
137 views

MDX for age range

I have a following MDX query: SELECT {[Measures].[PARTICIPANT ID]} ON columns, {[GENDER].[Female Gender]} ON rows FROM [Dystonia DS] I have a dimension called AGE IN YEARS and I want to filter ...
1
vote
1answer
167 views

Calculating age from one input and updating another

I know I must be missing something simple here, but I would love some help. First, the HTML: <input type="text" name="dob" /> <input id="age" type="text" name="age" /> And the ...
1
vote
1answer
559 views

Calculating age in years, days, months and hours in Matlab

I am nery new to matlab. I want to calculate the age of a person in years, days, months and hours in matlab? The user inputs his/her date of birth in DD/MM/YYYY format. Such as i am entering my DOB ...
0
votes
0answers
44 views

why is my site asking for age verification on a smart phone when there is no age restricted content

I can find lots of queries asking how to put verification but I want to find out why visitors using mobile devices are being asked to verify they are over 18 before being able to access my site - is ...
0
votes
7answers
5k views

Calculate age from date in textbox in C# [duplicate]

Possible Duplicate: Calculating age from birthday How do you calculate age in years, taking input from TextBox in the format dd/MM/yyyy? e.g. input: txtDOB.Text 20/02/1989 (String ...
0
votes
0answers
54 views

Can a Facebook app return age ranges for non-users?

Returning exact ages for app users and their friends requires the user_birthday and friend_birthday permissions, and in many cases friend_birthday won't return a value due to friends' privacy ...
0
votes
3answers
647 views

JavaScript calculate years and days from start date

I have date when someone is born, and I need to calculate with JavaScript or jQuery or so, how many years, days since birth date, until now. So result can be like 20 years, 89 days. I need to have ...
0
votes
0answers
121 views

Calculating age in years/ month(if year is 0) from date of birth in HQL

I want to calculate the age from date of birth.. By subtracting the current date and birth date i can calculate the year as age by using DATE_FORMAT(FROM_DAYS(TO_DAYS(CURRENT_DATE( ...
1
vote
2answers
2k views

how I can change the voice synthesizer gender and age in C#?

I am a novice in programming. I would like to change the gender and age of the voice of System.Speech in c#. For example, a girl of 10 years but can not find any simple example to help me adjust the ...
1
vote
2answers
244 views

How to get the age of a Web site (not domain)

I am wondering how to determine the age of a web site (not the age of the host / domain registration) in a robust and universal way. Take this site as an example: Most of the times, the age / date ...
0
votes
1answer
347 views

How to calculate age in Adobe Flex from Date of Birth

I have read some threads about this already but I don't understand the code, so i'll ask a question that works specifically with the data I already have. My database has a user's date of birth in the ...
0
votes
3answers
148 views

How to calculate the number of years in spring framework java [duplicate]

Possible Duplicate: How do I calculate someone's age in Java? I'm creating an application in spring framework which calculates the age after a user enters their birthdate to a UI. So ...
0
votes
8answers
3k views

Calculating age from date of birth in PHP

What's the most precise function you have come across to work out an age from the users date of birth, i have the following code and was wondering how it could be improved as it doesnt support all ...
0
votes
1answer
343 views

Algorithm to determine someones age given only a drivers license number?

I have been debating doing some work on a site which might be age restricted, one of the things have thought about is a hassle free way to confirm a user's age. I recently heard that the site with the ...

1 2 3