Hi,
I have come across dead end with respect to this problem that i am facing. I have a simple test code which i am trying to get it work. I have used the $_post method in order to pass input from one page and to be displayed on on another page. However I don't get any output or specific error message, all I get is Array().
There are two file the first file contains the below code:
<form method="post" action="dst01.php">
<br>
Enter your name: <input type="text" name="first_name0"/> <br/>
<input type="submit" name="submit"/> </form>
In this code i am taking the input from the user.
Below is the dst01.php file which contains the following code:
<?php
echo "Your name is :".$_POST["first_name0"]."<br/>";
?>
<?php print_r($_POST); ?>
I have enabled the register_globals in the php.ini file still it gives the same message Array()
I'm not able to understand what is it that needs to be enabled.... ultimately it seems that the $_POST is not working.
I need urgent help on this.... if any one has any suggestion on resolving this problem feel free to post in.....