No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: 2 constructor with the same parameters will have an error i think? which is which? | |
Im having problems with my code. :( the code should. the submenu for my menu should be on a radio button type. here's my first code: [CODE] public ... { //for background JMenuItem image = new JMenuItem("Images"); JMenuItem music = new JMenuItem("Music"); //submenu of music JRadioButtonMenuItem play = new JRadioButtonMenuItem("Play"); … | |
I want to calculate the age of a person, when he/she inputted his/her brthdy on the form, it will shows his/her bday in year/month/day format Example, the user chooses February 11 1994 on the drop down list. when he/she click submit, it will display his/her age Output must be like … ![]() | |
[CODE]<html> <head> <title>Web Development</title> </head> <body> <h2 style="text-align: center">Personal Information</h2> <?php // FOR PERSONAL INFORMATION PHP //text area First name if(empty($_POST['name'])) { echo "<p>You didn't enter your name.</p>\n"; } else { echo "Your Name: <b>" . $_POST['name'] . "</b><br />\n"; } // function get_Age_difference($start_date,$end_date){ list($start_year,$start_month,$start_date) = explode(‘-’, $start_date); list($current_year,$current_month,$current_date) = … |
The End.