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
What does PEAR stands for?
How to check an key is exists in array?
Explain the difference between $var and $$var?
Tell me how can I display text with a php script?
Are static variables final?
Is php good for career?
What is the output of the following php code?
Write an example to remove html tags from a string in php?
What is strcmp?
What is the purpose of the '.myd' file extension? What do thes file contain?
Tell me what does the php error 'parse error in php - unexpected t_variable at line x' means?
What is the function file_get_contents() useful for?
What does $globals means?
what is the scope of php in the future if any other language is developed then may be php is loss ???
Can we use include ("xyz.php") two times in a php page "index.php"?