ya you can do this use the following code to do this:-
form.html
<form action="display.php" method="POST">
Name<input type="text" name="u_name" placeholder="enter your name">
//other fields u want to add,add your code here......
</form>
display.php
<?php
echo $_POST['u_name'];
?>
If your problem is solved mark it as solved...