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 |
Explain what is the function file_get_contents() usefull for?
How to convert a character to an ascii value?
What is meant by pdo in php?
What does explode do in php?
What is different types of visibility?
What is mysql_fetch_object?
i have a string and that string contains the alphanumeric value and i want to hide or semihide the 10 digit telephone number from the string.
What is empty php?
Why do you need to filter out empty files?
How can we know the number of days between two given dates using PHP? How can we know the number of days between two given dates using MySQL?
How to set session.gc_maxlifetime properly?
What is indexing in mysql and how do we create indexing in mysql