How can we submit a form without a submit button?
Answer Posted / snc
1st option.....
In java script we can easly submit form without submit
button..........
document.form.submit();
...where form is formname.
2nd option.......
<form id="form" name="form" method="post" action="abc.php">
<INPUT TYPE="IMAGE" SRC="images/imagename.gif" ALT="Submit
button">
</form>
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Explain what does the function get_magic_quotes_gpc() means?
How to convert numbers to strings in php?
Describe session in php.
Is laravel an oop?
How to check a variable is an array or not in php?
Explain Creating and Naming an Array?
How to check an element is exists in array or not in php?
How does php server work?
Explain what are some new features introduced in php7?
How to get complete current page url in php?
How are variables declared in php?
How can I load data from a text file into a table?
What's the difference between __sleep and __wakeup?
Differentiate between require and include?
What are the advantages of php mysql?