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 |
What is strlen function in php?
Why are sessions used?
Does csrf token change?
Are php sessions secure?
What is var_dump?
Are sessions stateless?
What type of headers have to add in the mail function in which file a attached?
What are the ways we can destroy a session variable ?
How to find a length of a string in php?
does PHP support foreign key and Rollback?yes or not.if not then why. how will you done these concept in php?
1 Answers Avanigoradia, Primus Global,
What is the purpose of the php empty function?
Is it possible to submit a form with a dedicated button?