I will give you 3 examples of some common elements:
<input type="text" name="var1" value="<?php echo $var1 ?>">
<textarea rows=5 cols=15 name="var2"><?php echo $var2 ?></textarea>
<select name="array_of_vars">
<?php
//code to output your vars here into the option tag
?>
</select>