I am trying to take user input and post it to a new page where I can format their input into a table. Here is the begin of my form:
<form action="resumeProcessor.html" method="post" name="resume" onsubmit="return validateSubmission()">
<p>
<input name="name" type="text" id="name" value="Full Name" size="75" />
</p>
<p>
<input name="address1" type="text" id="address1" value="Street Address" size="73" />
</p>
From the user input I want to be able to take each of the text fields and format them into a table on the resumeProcessor.html. I however am unable to figure out how to call the values into my code.