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
Php being an open source is there any support available to it?
Which function would you use to format date information in php?
What is the difference between $var and $$var?
What is foreach loop in php?
How many types of inheritances used in php and how we achieve it.
Which one is best framework for php?
How to calculate the length of a string?
Does php have block scope?
What is the purpose of $_ session?
How can you associate a variable with a session?
Explain $_FILES Superglobal Array?
What is difference between strstr() and stristr() in PHP?
What the difference between the 'bitwise and' operator and the 'logical and' operator?
Explain converting an object?
Why php is used with mysql?