los forms se ocupan de la siguiente manera, ej:
Código PHP:
Ver originalecho "<form name='nombre que tendra el form' method='post' action='donde quieras direccionar el form'>";
//existen distintos tipos de type, hay ve cual te sirva mas...
echo "<td><input type ='Text' name='el nombre que tendra el input'></td>";
echo "</form>";
y para recuperar los valores:
// esta la puedes ocupar dentro del mismo php o llamarla desde otro php
Código PHP:
Ver original$variable cualquiera=($_POST['nombre que le hayas puesto al input']);