•How can we submit a form without a submit button

Answers were Sorted based on User's Feedback



•How can we submit a form without a submit button..

Answer / sei thu htun

You can use single button and use javascript for submit
eg.
<script type="text/javascript">
function submitform()
{
document.getElementById("your_form_id").submit();
}
</script>

//in html form
<input type="button" value="Submit" onclick="submitform();"/>

Is This Answer Correct ?    22 Yes 2 No

•How can we submit a form without a submit button..

Answer / creatore

simple use javascript
document.form_name.submit();

Is This Answer Correct ?    12 Yes 2 No

•How can we submit a form without a submit button..

Answer / bharat pradhan

<script type="text/javascript">
function pick()
{
document.form1.action="submit.php";
document.form1.submit();
}
</script>


<form name="form1" id="form1" method="post" onsubmit="pick()">
<input type="text" name="T1" id="T1">
</form>

Is This Answer Correct ?    8 Yes 3 No

•How can we submit a form without a submit button..

Answer / prantik gautam

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<title>submit a form without a button</title>
</head>
<body ondblclick="document.frm_nm.submit();">
<form action="" method="post" name="frm_nm">
<input type="text" id="txt" size="25"/>
</form>
</body>
</html>

Is This Answer Correct ?    3 Yes 1 No

•How can we submit a form without a submit button..

Answer / tejash gajjar

You can use single button and use javascript for submit
eg.
<script type="text/javascript">
function submitform()
{
document.getElementById("your_form_id").submit();
}
</script>

//in html form
<input type="button" value="Submit" onclick="submitform
();"/>

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More PHP Interview Questions

What is a namespace in php?

0 Answers  


What is a php array?

0 Answers  


How can we destroy the cookie in php?

0 Answers  


What is different types of visibility?

0 Answers  


What is the function mysql_pconnect() usefull for?

0 Answers  






What does PEAR stands for?

0 Answers   Arigo Infotech,


Is empty function c++?

0 Answers  


How do I use isdigit function?

0 Answers  


how can refresh current page automatically, without press any button and anchor tag.

5 Answers  


How to communicate with sockets in php?

1 Answers  


how to change the div background color on every refresh..guys can u help me out.

3 Answers  


What is the correct php command to use to catch any error messages within the code?

0 Answers  


Categories