現在 PHP4 で FORMデーターと受け渡しの実験を
しているのですが、下記のサンプルプログラムを
用いたところ正常に実行されません。

sample.php
---
<html>
<body>
<?
print $hoge;
?>
</body>
</html>

sample.html
------
<html>
<body>
<FORM method="POST" action="sample.php">
<input type="text" name="hoge"> <input type="submit" value="test">
</FORM>
</body>
</html>

実験方法としては ブラウザで sample.html にアクセスし、
テキストフォームに 適当な値を入力し、
その後 sample.php でその値が表示されれば成功なのですが、
下記のようなエラーが発生します。

Notice: Undefined variable: hoge in c:\php\sample.php on line 4

上記のエラーを見る限りでは、hoge が sample.php に渡っておらず、
不明な変数という理由でエラーが出ているように思えます。

サーバー環境は下記の通りです。
windows XP Pro
Apache/1.3.24
PHP Version 4.2.0

ご教授お願い致します。