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 can we encrypt the password using php?
What does type casting mean in php? Explain with an example?
Can we run php in apache tomcat?
Is server side a session?
What is php and why it is used?
Explain me soundex() and metaphone()?
Explain mysql_error().
What is difference between session_unset and session_destroy?
Tell me what is the difference between exception::getmessage and exception::getline?
What is array filter in php?
Can we set session value in javascript?
What are different types of runtime errors in php?
How to find the index of an element in an array php?
How can you encrypt password using php?
Are static variables final?