Answer Posted / 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 |
Post New Answer View All Answers
Write a program in php to reverse a number?
What is the difference between a session and cookies?
How to check whether a number is prime or not?
How to repeat a string to a specific number of times in php?
How does the identity operator ===compare two values in PHP?
What the limitation of header() function in php?
Explain what are psrs?
How easy is php?
How can we destroy the cookie in php?
How we can declare variable in php?
Tell me are parent constructors called implicitly inside a class constructor?
When do you use define() and when do you use const. What are the main differences between those two?
Code to open file download dialog in PHP?
How can I use single quotes in single quotes in php?
What is polymorphism in oop php?