Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Forms in Harlow

I have a code to insert a form into my story for users to fill out. Is there a way that I can get the form to generate a seperate page for the user to print out themselves, rather than have it go to my inbox? Also, is there a way that I can get them to stay on the passage after they have submitted the data? The purpose of the form is to allow the user to engage with the content that they've just read, to sort of test their knowledge. Here is the code I am using:
<form method='post'>
 Unit: <input type='text' name='Unit' id='Unit' /><br />

 Layer: <input type='text' name='Layer' id='Layer' /><br />

Overall Opening Depth: 0.5 inches

 Opening Depths: 
 NE corner - 0.5 inches
 SE corner - 0.5 inches
 NW corner - 0.6 inches
 SW corner - 0.7 inches
 Center - 0.5 inches
 
 Closing Depth:
 
 NE corner <input type='text' name='NE corner' id='NE corner' /><br />
 SE corner <input type='text' name='SE corner' id='SE corner' /><br />
 NW corner <input type='text' name='NW corner' id='NW corner' /><br />
 SW corner <input type='text' name='SW corner' id='SW corner' /><br />
 Center <input type='text' name='Center' id='Center' /><br />
 
 Munsell: <input type='text' name='Munsell' id='Munsell' /><br />
 
 Soil Description: <input type='text' name='Soil Description' id='Soil Description' /><br />
 
 Artifacts From this Level:  <input type='text' name='Artifacts From this Level' id='Artifacts From this Level' /><br />

 Comments:<br />
  <textarea name='comment' id='comment'></textarea><br />

  <input type='hidden' name='articleid' id='articleid' value='<? echo $_GET["id"]; ?>' />

  <input type='submit' value='Submit' />  
</form>
Sign In or Register to comment.