The input type just defines as the name itself says, the TYPE, ie text, password, hidden, etc.
The name attribut's value defines the variable's name when passed to a php script.
Hence the code should look like this:
<form method="yourmethod" action="yourphpscript">
Name:<input type="Text" name="name" value="">
</form>