0
How can i direct a submit to a place where i can visit the input ?
4 Answers
+ 1
let the type of the input equal submit
e.g.
<input type="submit" value="">
+ 1
so how to mention the location where this value gets submitted?
+ 1
when creating the form there is an attribute called action is responsible for it
e.g
<form action="location name">
</form>
+ 1
that would really help, thanks a lot