How to get parameter from url iframe in php?
- by Sovanrith Prak
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?