test.html
<html>
<head>
<title>test</title>
</head>
<body>
<form name="form1" method="post" action="testout.php">
irum1 : <input type="text" name="irum1" size="20" value="">
<input type="submit" value="Send">
</form>
</body>
</html>
testout.php
<html>
<head>
<title>testout</title>
</head>
<body>
getting irum1 = <?=$irum1?>
</body>
</html>
result (when I input "Hello php")
getting irum1 =
it should be
getting irum1 = Hello php
Above codes are about sending parameter that user input to another page. but the code is not working. I couldn't see the parameter. I'm on doing this work by apm (apache+php+mysql). What is the problem? I'm newbie on php.
Thanks.