Answer Posted / 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 View All Answers
Which php framework is fastest?
Hello Friends,I am seeking for a job in php having 9 months. exp.Please suggest any company openings.
What are the differences between require and include?
How would you determine the size of a file in php?
How to read a file in binary mode?
What is meant by an associative array?
What are the differences between GET and POST methods in form submitting?
Explain what is the difference between $var and $$var?
Explain me differences between get and post methods?
How can you tell if a number is even or odd without using any condition or loop?
What does session start do in php?
Explain about PHP cookies?
What is php session_start() and session_destroy() function?
What is the meaning of ‘escaping to php’?
What does trim () do in javascript?