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 |
Why would we use === instead of ==?
How to enable parsing?
How do I check environment variables?
Which of the following represents the proper way to set a session variable? Answer: a. $_SESSION['foo'] = 'bar'; b. session_start(); c. session_set_save_handler ('myopen', 'myclose', 'myread', 'mywrite', 'mydelete', 'mygarbage'); d. $foo = $_SESSION['foo']; 2.When administering MySQL, you should make the data directory accessible via the operating system 3.which statement can be used to determine how the optimizer resolves a query
What changes I have to do in php.ini file for file uploading?
Describe which programming language does php parallel to?
What does it mean when it says the csrf token is invalid?
Whether site will complete the execution of the script if Fatal error occurs ?
Which function would you use to determine the length of a string in php?
How to download and install php for windows?
hi..this is kumar...how m,uch time req for php preparation?is any coaching avaiable in vizag for php?
How to create database connection and query in php?