prettynpinknc
05-03-2009, 02:00 PM
I am trying to create a page where a user inputs data into text boxes/areas which will then be submitted and return another page with their input data where I can control the layout(the user is inputting resume info which upon submit the information will be properly formatted so the user can print the page and have a working resume).
Here is the beginning of my form:
<body>
<script type="text/javascript" src="projectJS.js"></script>
<hr width="60%" />
<h1 align="center">Build Your Resume</h1>
<form action="resumeProcessor.html" method="get" name="resume" onsubmit="return validateSubmission(this)">
<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>
Now I am at a loss as to what to do or if that is even the correct way to do it. On the submit page I want to be able to format their answers into a table to get my desired outcome.
Any help would be greatly appreciated!
Here is the beginning of my form:
<body>
<script type="text/javascript" src="projectJS.js"></script>
<hr width="60%" />
<h1 align="center">Build Your Resume</h1>
<form action="resumeProcessor.html" method="get" name="resume" onsubmit="return validateSubmission(this)">
<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>
Now I am at a loss as to what to do or if that is even the correct way to do it. On the submit page I want to be able to format their answers into a table to get my desired outcome.
Any help would be greatly appreciated!