How can we submit a form without a submit button?
Answers were Sorted based on User's Feedback
<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 |
Answer / sakthiopr
document.Formname.action = "filename to be submit"
Is This Answer Correct ? | 3 Yes | 2 No |
What is the difference between for and foreach loop in php?
What are the popular frameworks in php?
What is difference between md5 and SHA256?
Is php procedural or oop?
Is php a cms?
which is the best institute for php training near delhi & NCR......& what is the fee for the same....
How to upload and play video in Php when u r in localhost?
What are the features of php 7?
How do I debug php?
How can we encrpt a text?
What is $_ server request_method == post?
Is null empty php?