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> Link to comment https://forums.phpfreaks.com/topic/1930-sending-data/ Share on other sites More sharing options...
PDM Posted August 21, 2004 Share Posted August 21, 2004 <?php echo $HTTP_POST_VARS['variable'];?> Link to comment https://forums.phpfreaks.com/topic/1930-sending-data/#findComment-6285 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.