Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
age
- Page 1
Re: Buggy career talk :-P
Programming
3 Weeks Ago
by Reverend Jim
… of computing will know where I am going. In the
age
of 80 column punch cards, columns 73-80 were reserved…
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
2 Weeks Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: How old is your computer?
Hardware and Software
2 Months Ago
by Dani
… Apple-only household. Alas, the Dell started really showing its
age
, and my Macbook is actually more performant. I ended up…
Re: Selling the house that I grew up
Community Center
Geeks' Lounge
1 Month Ago
by Dani
… large house with my parents in New York from the
age
of 2 until I was 27, at which point I…
Re: Selling the house that I grew up
Community Center
Geeks' Lounge
1 Month Ago
by Reverend Jim
… years. It was getting too hard to maintain at our
age
and the drive (close to eight hours) was just getting…
Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’
Community Center
1 Month Ago
by rproffitt
UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance.
Re: Age of programmers
Community Center
14 Years Ago
by jeffballard
age
is doesnt matter for a good programmer .......
Re: Age of programmers
Community Center
14 Years Ago
by AndreRet
Age
does not count, but the skill that you apply to your applications. Remember that Bill gates was virtually a minor when he developed windows...;)
Age
Programming
Software Development
15 Years Ago
by chetanbasuray
… my form and storing it, I need to calculate the
age
from this date of birth. While this problem seems easy… of my friends code) I also need to increase the
age
of the person with time. Now I'm inserting the…
Age
Community Center
Geeks' Lounge
9 Years Ago
by almostbob
A short note about
age
I have it The modern definition of
age
"I am so old I have to page down twice to find my birth year on date pickers"
Re: Age
Programming
Software Development
15 Years Ago
by ddanbe
You could also have a look at this snippet, to calculate the
age
of a person: [url]http://www.daniweb.com/code/snippet217223.html[/url]
Age Function Help
Programming
Web Development
17 Years Ago
by SheSaidImaPregy
…(CurrentDate) Select Case Day(DOB) Case Is < Day(CurrentDate)
Age
= DateDiff("YYYY", DOB, Now()) Case Is = Day(CurrentDate…("YYYY", DOB, Now()) Case Is > Day(CurrentDate)
Age
= DateDiff("YYYY", DOB, Now()) - 1 End Select Case…
Re: Age Function Help
Programming
Web Development
17 Years Ago
by SheSaidImaPregy
…(DOB) Case Is < Month(System.DateTime.Today)
Age
= DateDiff("YYYY", DOB, Now()) Case Is…Select Case Day(DOB) Case Is < Day(CurrentDate)
Age
= DateDiff("YYYY", DOB, Now()) Case Is …quot;, DOB, Now()) Case Is > Day(CurrentDate)
Age
= DateDiff("YYYY", DOB, Now()) - 1 …
Re: Age class and associated methods
Programming
Software Development
17 Years Ago
by new_2_java
… (System.in); //Input Ages System.out.println("Enter 1st
Age
: ");
age
=scan.nextInt(); System.out.println("Enter type: "…;); type=scan.nextInt(); ages.setAges(type,
age
); System.out.println("Enter 2nd
Age
: ");
age
=scan.nextInt(); System.out.println("Enter…
Age Calculation(code efficiency)
Programming
Software Development
14 Years Ago
by Latvija13
…"02/09/1983"; int
age
=
age
(dob); System.out.println(
age
); } public static int
age
(String s){ Calendar cal = Calendar.…indexOf("/")+1, s.lastIndexOf("/"))); int
age
= 0; if(myMonth>=bMonth && myDay…
Age showing 0 in database
Programming
Web Development
8 Years Ago
by janicemurby
…as it should be but the
age
is showing 0 in
age
column ive tried different things …and its staying the same heres the code for
age
and date of birth in the php block $…$year . "-" . $month . "-" . $day; $
age
= $_POST['
age
']; And here is the database string mysqli_query($conn,"INSERT…
Age class and associated methods
Programming
Software Development
17 Years Ago
by clueless101
… private int age1; //holds 1st
age
private int age2; //holds 2nd
age
private int age3; //holds 3rd
age
//Constructor Method public Ages() { //Initialize… (int i, int
age
) { //Set i to
age
if (i==1) age1=
age
; else if (i==2) age2=
age
; else age3=
age
; } public int getAges…
Re: Age showing 0 in database
Programming
Web Development
8 Years Ago
by janicemurby
…year . "-" . $month . "-" . $day; $
age
= $_POST['
age
']; $country = $_POST['country']; $memtype = $_POST["memtype"]; $EncryptPassword …f_name,email,password,DOB,
age
,memtype,country) VALUES ('$fname','$email','$EncryptPassword','$DOB','$
age
','$memtype','$country')"); …
Re: Age showing 0 in database
Programming
Web Development
8 Years Ago
by cereal
…, a part the DOB from which you could calculate the
age
: $birth = "{$year}-{$month}-{$day}"; $dob =… new DateTime($birth); $now = new DateTime(); $
age
= $now->diff($dob)->format('%y'); If you have… an input field named `
age
` in the form, then make sure it is …
Re: Age class and associated methods
Programming
Software Development
17 Years Ago
by clueless101
… (System.in); //Input Ages System.out.println("Enter 1st
Age
: "); age1=scan.nextInt(); System.out.println("Enter 2nd…;); age2=scan.nextInt(); System.out.println("Enter 3rd
Age
: "); age3=scan.nextInt(); //Print average scores System.out.println(&…
Re: Age Calculation(code efficiency)
Programming
Software Development
14 Years Ago
by Latvija13
Oops, I did make a mistake. Lines 20-22 need some changes. [CODE] if(myMonth>bMonth){
age
= myYear - (bYear); } else if(myMonth==bMonth&&myDay>=bDay){
age
= myYear - (bYear); } else
age
= myYear - (bYear + 1); [/CODE]
Re: Age showing 0 in database
Programming
Web Development
8 Years Ago
by cereal
Hi, it seems fine. Are you sure `$_POST['
age
']` is set? Check the submit form or do a `var_dump($_POST);` to see what is really sent with the request, maybe is not `
age
` but `
Age
` or something similar.
Re: Age showing 0 in database
Programming
Web Development
8 Years Ago
by diafol
So where is `$_POST['
age
']` ? You can see yourself that you have no `["
age
"]` item in the dump. Not sure you… should store current
age
anyway, otherwise you'll need to set a cronjob to…
Age verification..
Programming
Software Development
13 Years Ago
by TurkAlush
Hey Guys.. I am going to make a program that can ask for
age
, an then verify if the persons
age
is old enough.. The
age
limit has to be 18 years old, so the program asks for
age
, and then it will let person pass the
age
verification pass.. How can i make a program like that??
Re: AGE calculation giving difference in Days
Programming
Web Development
11 Years Ago
by chaitu11
… = (''+Cdate).split(" ");
Age
= CDateArr[3] - BDateArr[3]; document.getElementById('
age
').value =
Age
; } </script> <tr…tr> <td class="lable2">
Age
: </td> <td><…type="text" id="
age
" name="
age
" onClick="DOBcalc()" class…
Age Verifying Script, with different images showing at at different range of age
Programming
Web Development
14 Years Ago
by reaphux
… is very limited. I already have this
age
verify javascript which i've downloaded off net…up. Any help would be much appreciated. The
age
verify script im using is as following. [CODE…=javascript] function checkAge() { /* the minumum
age
you want to allow in */ var min_age = 18; /*…
Age counter - Any other way?
Programming
Software Development
15 Years Ago
by Lingson
…,dd) yearage = lastyear.year - birthday.year # Count year
age
# Counting the month
age
if now_mm >= mm: if now_mm - mm > …+ now_mm - mm lastmonth = date(now_yy,last_mm,dd) # Counting the day
age
if now_dd > dd: last_mm = now_mm # Use this month as…
age compute using calendar class [problem]
Programming
Software Development
15 Years Ago
by scias23
….getInstance(); Calendar birthDate = new GregorianCalendar(); birthDate.set(yyyy, mm, dd);
age
= currentDate.get(Calendar.YEAR) - birthDate.get(Calendar.YEAR); birthDate.add…
age confirmation script for adult website.
Programming
Web Development
13 Years Ago
by smackthat9876
… just need a disclaimer and 2 buttons one that verifies
age
or one that redirects them out of the site. Here… must be at least 18 years of
age
to enter this website (21 years of
age
in the USA)" if they… confirm their
age
to be of majority I want…
Age Calculator
Programming
Software Development
12 Years Ago
by markwiering
…I made a program which is able to calculate your
age
. You can find the source code below this text. ….com/software-development/cpp/code/331349/c-code-for-simple-
age
-calculator But, my program is: **- Without mistakes**, it doesn…;< endl << "The system is calculating your
age
..." << endl << endl; ljaar = hjaar -…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC