How can we submit a form without a submit button?
Answer Posted / pankajbisane
<script>
function doSubmit()
{
var frm = window.document.frmName;
frm.action="path to php file";
frm.method = post;
frm.submit();
}
</script>
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is the purpose of a query?
Explain about PHP filter and why it should be used?
Explain the difference between php4 and php5.
How is a constant defined in a PHP script?
Why we use get in php?
What is rtrim php?
What are the different ways to login to a remote server? Explain the me, advantages and disadvantages?
What is a composer in PHP?
How to store the uploaded file to the final location?
Which is better python or php?
Tell me what is mean by an associative array?
What are the differences between mysqli_connect and mysqli_pconnect?
What is http get and post?
Why is node js better than php?
What is a php tag?