Following file is "DisplayForm.php"
<form action="DisplayFields.php" method="POST">
Your Name:<input type="text" name="txtName">
Your Age:<input type="text" name="txtAge">
<input type="submit" value="Submit">
</form>
when i run this file and submit the form .... the following error occurs in DisplayFields.php
Warning: Failed opening 'c:\inetpub\wwwroot\global2night\IconoFile\DisplayFields.php' for inclusion (include_path='') in Unknown on line 0
But if I give the action of the form as the same file that is "DisplayForm.php" then it works.....
Solution for it ?