+ 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.
6 Respostas
+ 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.
+ 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>
+ 3
Create a form that will get the users name and age while restricting the latter between 18 and 35
+ 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>
+ 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
0
Normally you would get solution quickly, if you could share your code.