是否可以将SESSION变量从嵌入式IFRAME传递到父页面?
含义:
<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>
答案 0 :(得分:0)
默认情况下,PHP会话使用cookie(每个域)实现。
您不需要做任何明确的事情来在不同的帧之间共享它们(除了将它们保存在同一个域中)。