How can we submit a form without a submit button?
Answers were Sorted based on User's Feedback
<script>
function doSubmit()
{
var frm = window.document.frmName;
frm.action="path to php file";
frm.method = post;
frm.submit();
}
</script>
Is This Answer Correct ? | 8 Yes | 2 No |
Answer / sakthiopr
document.Formname.action = "filename to be submit"
Is This Answer Correct ? | 3 Yes | 2 No |
What is the difference between indexed and associative array?
What is isset and unset in php?
equivalent code for the following c program in php void main() { int i=5;printf("%d",i); }
How can we extract string 'abc.com' from a string "http://info@abc.com" using regular expression of PHP
Tell me what are the functions to be used to get the image's properties (size, width and height)?
How to get the directory name out of a file path name?
How to install PHP with --mcrypt and --mhash?
What is polymorphism with example in php?
How easy is php?
WHat is the diff. between PHP4 and PHP5?
6 Answers Clarion Technologies, IBM, OmniNet, Sparkton Infotech,
How can we change the maximum size of the files to be uploaded?
What is purpose of @ in Php?