How can we submit a form without a submit button?
Answer Posted / madhu
<script>
function formsubmit()
{
document.form.submit();
}
</script>
<form name="form" method="post">
<a href="#" onclick="formsubmit();">Submit</a>
</form>
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the scope of a variable defined in a function?
Which function can be used to delete a file?
Explain whether it is possible to share a single instance of a memcache between multiple php projects?
What software is required to run php?
What is difference Between PHP 5 and 7?
What does echo mean in php?
How to set a value in session? How to remove data from a session?
How to get length of an array in PHP?
Explain about objects in PHP?
Explain how can we increase the execution time of a php script?
What is php beginner?
How is it possible to parse a configuration file?
What is empty php?
How to get useful error messages in php?
What are the main error types in php?