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 |
Which PHP function would you use to send an email?
What is mysql_fetch_row?
what is CURL?
how many types of error in PHP.
What is use of isset function in php?
What are the different ways to login to a remote server? Explain the means, advantages and disadvantages?
why header() gives the error like header already sent in php please explain in brief
What is multidimensional array in php?
write a program to print [123] [456] [789] note : braces also need to be printed
Difference between notify url, return url in paypal payment gateway?
4 Answers A1 Technology, Capital IQ, CMS, Essar, HCL, IAS, Karvy, L&T, State Bank Of India SBI, TATA, Tisco, WNS,
Explain converting an object?
What is difference between print_r and echo in php?