Hello
I have the following situation:
File test.php: ($SN -> sessionID)
<?
session_id($SN);
session_start($SN);
...
?>
<body>...
<iframe src="iframe_test.php"></iframe>
...
</body>
File iframe_test.php:
<?
session_id($SN);
session_start($SN);
...
?>
<body>...
</body>
***** Now I get an error within the iframe, the the page cannot be displayed.
Any idea?