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
How to call php function from javascript using ajax?
What good is polymorphism?
Is php better than python?
What is the difference between null and empty?
Does php has a future?
What is Different between Joomla And Magento?
What is session cookies php?
What are the encryption functions available in PHP?
Why do we show php code in browser?
What is difference between echo and print in php?
Which array function checks if the particular key exists in the array?
What PHP stands for?
How can we execute a php script using command line?
Why do we use hooks?
How to assigning a new character in a string using php?