tenho esse arquivo teste.htm
<html> <header> <title>..:: Teste em PHP ::.. </title> </header> <body> <form method="post" action="teste.php"> <input type="text" name="edit1" value=""> <input type="submit" name="botao1" value="Clique aqui"> </form> </body> </html>
e o meu teste.php
<html> <body> <? if ($edit1="eu") { echo $edit1 } ?></body> </html>
mas mesmo qdo digito eu ele não escreve pq?