How to pass an IFRAME SESSION to the parent page?
- by JohnJon
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>