Posts by gulima • 61 points
3 posts
-
1
votes2
answers860
viewsA: Media calculation using C++ Function
Boy, here’s a code that’s more accurate, closer to what you want to do. But there are several things (as already commented) that you need to understand better, judging by the code you posted.…
-
2
votes8
answers61967
viewsA: Should I use input type="Submit" or button type="Submit" in forms?
It is important to note that the default value of the attribute type of button is submit. Thereby, button will submit a form whenever: type="submit" type="" (emptiness) type is not specified In…
-
3
votes3
answers13363
viewsA: How to validate an input?
Tag form, add a call to the form validation function. <form action="_graphes.php" method="post" onsubmit="validar()"> The validation function will contain the code snippet you’ve already…