I need help please. I create html file with 2 tabs. The first tab contains form that takes user input and performs some function. I want the result of the function to be displayed in the second tab. The form in first tab should submit an action to PHP script. The PHP script is inside the same HTML file. What should I write in action of the form?
Any help is highly appreciated.
Edit1: The html file is a client side and the php is a server side So, I should separate the php script and put it in a separate .php file. So, I have 2 files: ".html" and ".php".
HTML file:
<ul class="nav">
<li id="TAB0" class="selected"><a href="#TAB0"><em>Run function</em></a></li>
<li id="TAB1"><a href="#TAB1"><em>Results</em></a></li>
<li id="TAB2"><a href="TAB2"><em>Help</em></a></li>
</ul>
<div class="content" id="CONTENT">
<!--TAB0-->
<div id = "TAB0" class="active">
<div class="MainContent">
<form id='myform' enctype='multipart/form-data' name='myForm' method='post' action="calculateResults.php">
SOME INPUTS HERE
<p><input type='button' name="mybut" value='Run'></p>
</form></div></div>
<!--TAB1-->
DISPLAY THE RESULT HERE
<!--TAB2-->
What is done actually with the above code is display the result in a new window. The php file is already print the output result in some texts and table. I want when I click the button in the first tab to execute .php file and display the result in the second tab not in a new window.
Any help please? Thanks,