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
Is php class name case sensitive?
What function do we use to find length of string, and length of array?
What is the output of the ucwords function in this example?
How to get the number of characters in a string?
Explain NULL?
Is it possible to destroy a cookie?
Do you know what is the difference between the include() and require() functions?
What are php keywords?
How do you identify independent and dependent variables in regression analysis?
Which is not a file-related function in php?
What is $_session in php?
Is python similar to php?
Is java is better than php?
What is the latest version of php?
What is magic function in php?