chng Posted August 21, 2004 Share Posted August 21, 2004 I'm using Apache as server. I can't send data from test_php.php to test1.php for display. Can anyone help me? Your help is much appreciate. test_php.php <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <form name="form1" method="post" action="test1.php"> <input type="text" name="variable"> <input type="Submit" name="Submit" value="process"> </form> </body> </html> test1.php <html> <head> <title>1</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> nama : <?php echo $variable;?> ?> </body> </html> Quote Link to comment Share on other sites More sharing options...
PDM Posted August 21, 2004 Share Posted August 21, 2004 <?php echo $HTTP_POST_VARS['variable'];?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.