How can we submit a form without a submit button?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / naresh
through header() function.
header("location:url:);
| Is This Answer Correct ? | 4 Yes | 7 No |
How to avoid the undefined index error?
How can we get the browser properties using PHP?
4 Answers Google, Pollux Softech,
How does php isset work?
What is the role of php.ini file?
Write a select query that will be displayed the duplicated site name and how many times it is duplicated?
How to call a php function from another php file?
If we login more than one browser windows at the same time with same user and after that we close one window, then is the session is exist to other windows or not? And if yes then why? If no then why?
How to create a text file in PHP?
What is uniqid php?
what does this symbol mean in php?
How to replace a text in a string with another text in php?
Can we use php variable in javascript?