I have created a website called https:www.somePage.com
and I'm rendering this page inside another website using iframe
. Since I'm using the same iframe
in different websites, to track the website that using my https:www.somePage.com
I'm adding a parameter called page
in the iframe src. So the iframe will be like
<iframe src="https:www.somePage.com?page=company_name" width="100" height="250">
How can I access the parameter page
in my website https:www.somePage.com
.