How can we submit a form without a submit button?
Answer Posted / madhu
<script>
function formsubmit()
{
document.form.submit();
}
</script>
<form name="form" method="post">
<a href="#" onclick="formsubmit();">Submit</a>
</form>
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How can we set and destroy the cookie in php?
What are psrs?
What is needed to be able to use image function?
Define anonymous classes in php7?
What is data structure in php?
What is the differences between $a != $B and $a !== $B?
How to turn on the session support?
What is csrf verification?
What do you mean range() in php?
What is the meaning of a persistent cookie?
How to declare an array in php?
What is the use of isset() in php?
Does php need a closing tag?
How to get a total number of rows available in the table?
What is php and sql?