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
Why do we use namespace in php?
How to add comments in php?
What is the advantage of runtime polymorphism?
What are the method available in form submitting?
Where are cookies stored php?
Can we override static method?
Why should I store logs in a database rather than a file?
Do you know what is the difference between mysql_fetch_object() and mysql_fetch_array()?
Is php fully object oriented?
Explain what does $_server means?
Why is overriding runtime?
What is the difference between implode() and explode() in php?
What are the features and advantages of object-oriented programming in php?
What is the use of callback in php?
How to remove the new line character from the end of a text line?