HTML print statements?

  • Thread starter Thread starter coryk125
  • Start date Start date
C

coryk125

Guest
What is the HTML version of a print statement?
I want to print out a variable, for example, I have inputs "first name" and "last name". How would I display those inputs? Something like this?

<html>
<body>
<form>
<input type="text" name="first name">
<input type="text" name="last name">
</form>
print (first name &nbsp last name)
</body>
</html>

This isnt working. Anyone know what I should be doing instead?
 
Back
Top