Forum Moderators: open
<iframe><code>Text</code></iframe> Then that should be easy.
If its done via
<iframe src=/results.html></iframe> Then that should work well to.
************
If it doesn't this may work
************
<input type="button" onClick="window.location.href='print.asp?name=pop&email=example@example.com';"> You can easily transfer the data from the form into a link with most server sided langauges.
************
Example for asp would be
?name=" & request("name") & "&email=" & request("email") & "';"> *************
This may be going off forum topic a bit and may seem hard for those not experienced in other languages but you'd need at least javascript to complete the task.
That would be my first attempt at doing it.