How to pass an IFRAME SESSION to the parent page?
Posted
by JohnJon
on Stack Overflow
See other posts from Stack Overflow
or by JohnJon
Published on 2010-02-17T15:01:56Z
Indexed on
2010/03/21
2:01 UTC
Read the original article
Hit count: 270
Is it possible to pass a SESSION variable from am embedded IFRAME to the parent page?
Meaning:
<form>
<iframe>
upload image to fake AJAX.
With PHP, set $_SESSION to be the location of the temporary uploaded photo
</iframe>
<input type="submit" /> // will this form submit have the $_SESSION variable set from the IFRAME?
</form>
© Stack Overflow or respective owner