How to get parameter from url iframe in php?
Posted
by
Sovanrith Prak
on Stack Overflow
See other posts from Stack Overflow
or by Sovanrith Prak
Published on 2012-09-18T09:35:55Z
Indexed on
2012/09/18
9:37 UTC
Read the original article
Hit count: 140
I use anchor tag to pass url and parameter to iframe
<a href="?test=3" target="iframeTest">Test</a>
<iframe src="" name="iframeTest" style="display:none;"></iframe>
I see that iframe can get this url with parameter. I want to get the parameter (test) from iframe and echo with PHP. So could you tell me some technique to get value of parameter from iframe? Or we can't get value of parameter from iframe?
© Stack Overflow or respective owner