How would I use href with a print statement.
Heres what I am thinking.
I created a form that appends data to a file and returns a print statement to html (The browser displays Payroll Reporting Form)
Here is how I added it.
print header, start_html("Payroll Reporting Form"
Heres my problem.
I want to add a second line of text that contains an href tag. The idea would be to have link point to the original form so that the user could start all over instead of using the back function on the browser.
My problem is that I can not seem to figure out how to do this using a print statment?
-Danny