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   last name)
</body>
</html>
This isnt working. Anyone know what I should be doing instead?
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   last name)
</body>
</html>
This isnt working. Anyone know what I should be doing instead?