How do you reference input in HTML?

Suppose if you used an input tag to take input of type text from the user and for its name attribute had "input" like so:
<input type="text" name="input" size = "50"/>

How do you reference input later on? (If you want to display what the user entered).
 
Back
Top