Lets say I have the following webpage
www.fake.com/sample.html
I could pass some parameters to that webpage, like so
www.fake.com/sample.html?count=10&format=gold
this page has an iframe in it, I would like to pass any parameters that the main page gets to the enclosed iframe. If the main page is called like so
www.fake.com/sample.html?count=10&format=gold
the iframe in the sample page should be called with those same paramters.
<iframe src="www.fake.com/framed_page.html?count=10&format=gold"></iframe>
What is the easiest way to do this?