如何将IFRAME SESSION传递给父页面?

时间:2010-02-17 15:01:56

标签: html iframe

是否可以将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>

1 个答案:

答案 0 :(得分:0)

默认情况下,PHP会话使用cookie(每个域)实现。

您不需要做任何明确的事情来在不同的帧之间共享它们(除了将它们保存在同一个域中)。