I have a form
<form action="frame.html" method="GET"> <input type="text" name="SOMEID" /> <input type="submit" value="Submit" /> </form>
I'd like to pass SOMEID to the frame.html page in a few places as html links:
link/embed/$SOMEID
link/analytics/$SOMEID
link/blah/$SOMEID
where $SOMEID was the form input on the previous page.
If someone types 1234, i'd like to place 1234 anywhere I want on frame.html without writing to the html file and if possible, without using a web server. That way someone using a laptop can just launch the html file from the desktop and run it.
I am an AV and server person. Someone assumes I should know how to do this. I don't.