Dear Sir Our Site is running on Linux/Apache/PHP/MySQL Combination.
I am unable to retrieve the Values passed from HTML FORM(test1.html) in a PHP Page(test1.php) Is it something to do with the Web Server Settings or any thing else...............? The code is as follows; Test1.html <html> <head> <title>Test Page</title> </head> <body> <form name=form1 method="Post" action="test1.php"> <input type=text name="text1" value=""> <input type=submit value="Ok" > </form> </body> </html> Test1.php <html> <head> <title>Test Page</title> </head> <body> <form name=form1> <?php echo $text1; ?> </FORM> </body> </html> After Submitting the form text1.html to text1.php by adding some text in textbox text1, i am unable to print the textbox value text1 in Text1.php page. Can you help me in this regard asap? Thanks & Regards, Prashant S Akerkar.