This isn't printing the form variable, any ideas why?

The HTML: (tst.html)
Code:
<html>
<head>
</head>
<body>
<form id="form1" name="form1" method="post" action="processform.php">
<input type="text" value="Dodger" id="name" name="name">
<br>
<input type="submit" value="submit">
</form>
</body>
</html>

The PHP: (processform.php)
PHP Code:
<? echo "Hey $name, what's shakin'?"; ?>

Running: PWS on Win98.

Just prints: "Hey , what's shakin'?"

TIA.