Click here to Skip to main content
15,886,518 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have created the following form and the .php code as follows but when I click the submit button there are not any errors but also there is no any output also. If you guys have the time please help me solve this problem.

Note: I have used the XAMP to host my web pages in both HTML & PHP

The Form

HTML
<form id="form1" name="form1" method="post" action="Submit01.php">
      <p> </p>
      <p> </p>
       	<div id="apDiv6">
  <table width="389" height="100" border="0" align="center">
    <tr>
      <td width="116">CheckIn Date:</td>
      <td width="263"><label>
        <input type="text" name="CheckIn" id="CheckIn" />
      </label></td>
    </tr>
    <tr>
      <td>CheckOut Date:</td>
      <td><label>
        <input type="text" name="CheckOut" id="CheckOut" />
      </label></td>
    </tr>
    <tr>
        	<td><input type="button" value="Submit" name="Submit" id="Submit" /></td>
            <td><input type="button" value="Reset" name="Reset" id="Reset" /></td>
        </tr>
  </table>
</div>
<p></p>
<div id=><p></p><p></p>
	
<div id="apDiv10">
  <table>
    
    	
    
    </table></div>
</div>
      <p> </p>
      <p> </p>
      
      <p> </p>
      <p> </p>
    </form>


The PHP code - File Name Submit01.php

PHP
<?php echo $_POST["CheckIn"]; ?> <?php echo "<br />"; ?>
            <?php echo $_POST["CheckOut"]; ?>
Posted

1 solution

I had solved the problem my self. Thanks guys!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900