Well, all I want is to pass a variable, just one, to an iframe, I know that is something like:
<iframe src= ''</iframe> and inside the iframe something like:
$myvar = $_GET['variable']; But my problem is that my variables are URLS, with "?" and "&" so when I parse that variables throught the Iframe a "not found" happends, is there any way to parse urls as variables to a in iframe?
Thanks!