Formでいきなりつまずいてしまったのですが、HTMLのパートで
<html><body>
<form action="processForm.php" method="get">
Name: <input type ="text" name="username">
<input type="submit" name="submit">
</form></body></html>

としてphp部分で、processForm.php
<html><body>
<php?
print "thank you $username<br>";
?>
</body></html>
としたのですが、サブミットボタンを教えても入力した情報が
processForm.phpというファイルに転送できないのですが、
どうしてでしょうか?html fileとphp fileは同じディレクトリに
いれてます。