Mastering the Social Symphony: A Guide to Strategic Social Media Management Digital Media Digital Marketing by Nandini_7 In today's digital age, social media has become an indispensable tool for businesses and … Re: How Build Html form ? Programming Web Development by Dani I'm not exactly understanding your question. I see you have an HTML form here in this HTML code. What is not working about it? You need to specify the action="#" to be a URL that will process the form. Re: Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Dani I'm happy to live in Silicon Valley :) How Build Html form ? Programming Web Development by Kirubel_2 …<input type="text" name="age" placeholder="Enter secret number of Berhan bank…quot; name="image" placeholder="Enter Your age" value="1234567"> </div>…quot; name="image" placeholder="Enter Your age" value="Payment"> </div>… Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Johannes C. … article examines the EU's absurd approach to the digital age, the challenges innovative companies face within its borders, and the… rest of it crumbles under the strain of the inverted age pyramid. Worst of all, much of the tax money is… E-Commerce Advertising Networks Hardware and Software Networking by e-commercead In today's digital age, e-commerce has become a cornerstone of retail, offering consumers … The Rise of AI Scams: Deciphering Reality in a World of Deepfakes Community Center by Johannes C. … Hong Kong: This scam is essentially an iteration of the age-old CEO fraud, where imposters posing as senior company executives… AI-powered Code Reviews: The Future of Collaborative Development Programming by SEO_935 … the rising demands for quality and innovation in the digital age. 'Prepare for the Earliest Possible AGI Deployment Scenario' Community Center by Johannes C. … to shaping policy making and accelerating research in the digital age. ## About Jen Rosiere Reynolds ## ![jrr-portrait.jpg](https://static.daniweb… Re: Is digital marketing effective for your business? Digital Media by Dani IMHO all businesses in this day and age should be using some form of digital marketing, even if it's just being on Yelp or having a website. Are you posing this question to the community, or just sharing what digital marketing is? I'm confused by the point of your post. Re: Things I hate about TV shows Community Center Geeks' Lounge by Reverend Jim … of The Old Man (Jeff Bridges, John Lithgow). At my age sometimes I lose the thread if two weeks goes by… Re: Getting my foot in the door? Community Center by trueframe Networking, training and demonstrating the necessary skills are key to getting started. Attend industry events, network with professionals, and find job opportunities and internship opportunities. Increase your chances of success by showcasing your strengths and demonstrating your passion and commitment to the field. Re: Age of programmers Community Center by jeffballard age is doesnt matter for a good programmer ....... Re: Age of programmers Community Center 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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??