Im having some trouble with the latter interval for a form in HTML5. I went back to course and still cant figure it out. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

Im having some trouble with the latter interval for a form in HTML5. I went back to course and still cant figure it out.

Any comments on helping me understand would be greatly appreciated.

8th Sep 2017, 5:52 AM
Richard Downey
Richard Downey - avatar
6 Answers
+ 5
Instead of finishing the c++ course I'm on, I've been trying to go over what I've learned in HTML, CSS, PHP, and Java. I felt like I needed to do more studying especially since I was having trouble with the questions that I was getting during challenges. Thank you for the comments. Very much appreciated.
8th Sep 2017, 7:47 AM
Richard Downey
Richard Downey - avatar
+ 3
<form action="actionGet.php" method="get"> Name: <input type="text" name="name" /><br /><br /> Age: <input type="text" name="age" /><br /><br /> <input type="submit" name="submit" value="Submit" /> </form>
8th Sep 2017, 7:18 AM
Richard Downey
Richard Downey - avatar
+ 3
Create a form that will get the users name and age while restricting the latter between 18 and 35
8th Sep 2017, 7:20 AM
Richard Downey
Richard Downey - avatar
+ 2
<form action="actionGet.php" method="get"> Name: <input type="text" name="name" /><br /><br /> Age: <input type="number" min="18" max="35" name="age" /><br /><br /> <input type="submit" name="submit" value="Submit" /> </form>
8th Sep 2017, 7:33 AM
Calviղ
Calviղ - avatar
+ 1
Your question is quite unclear, and you doesn't provide code for getting us a little chance to better understand your problem @@ In addition to post your code (or even better link it), please explain what's your meaning by writing << the latter interval for a form >> and be more descriptive in what are << some trouble >> you've envountered ;P
8th Sep 2017, 7:13 AM
visph
visph - avatar
0
Normally you would get solution quickly, if you could share your code.
8th Sep 2017, 6:34 AM
Calviղ
Calviղ - avatar