here is the test.html
<html>
<body>
<form action="test1.php" method=post>
Name :<input name= "name" type="text">
</body>
</html>
And here it is the test1.php
<?php
$name= $_POST['name'];
echo $name;
?>
But it doesnt display the name .Can anyone help me ??