What I want to ask is may be dumb question, but it is hard to find what is wrong because it is too simple. What I want to do is to get a string value and post to value in another page. The source of two pages are as below. The problem is, no matter what I type in the textbox, when I push the OK button, the result is like this "; ?> This is my first time using actual server so..could you guys help me?
<html>
<body>
<form method="get" action="id.php">
<input type='text' name='id'>
<input type='submit' value='OK'>
<input type='reset' value='Cancel'>
</form>
</body>
</html>
id.php
<? php
echo " $id welcome <p>";
?>