hi
I am very new ha.. need help at start I have written an easy form in html and...:
<html>
<head>
<meta http-equiv="Content-Language" content="tr">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1254">
<title>form</title>
<body>
<form action="form.php" method="post" >
entry: <input type="text" name="e" size="50"><p>
<input type="submit" value="send" name="send">
</form>
</body>
</html>
and a php named form.php
<html>
<head>
<meta http-equiv="Content-Language" content="tr">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1254">
<title>form</title>
<body>
entry:
<?php
echo $e ;
?>
</body>
</html>
it doesn't show text that I've written in the box,, it only writes
"entry:"
I think I did somethin wrong on setup plse help