HI I need help in these parts I am doing code in PHP how i c
HI I need help in these parts
I am doing code in PHP how i can linke my function with a button like \'sumbit\' or \'show result\'
and how I can creat a button that reset the data do i use unset command?
and I am counfused when i need to use GET AND POST and the diffrence btw the both
Solution
To call reset function,use
resetForm($(\'#myform\')); // by id, recommended
A POST request gets input from the query string and through the request body. A GET request just gets input from the query string. So a POST request is a superset of a GET request; you can use $_GET in a POST request.
