hab dich wohl lieb abraxax
tobi
![IloveU](https://www.php-resource.de/forum/core/images/smilies/aktion031.gif)
![Charity](https://www.php-resource.de/forum/core/images/smilies/charity.gif)
/** index.php **/
<?php
session_start();
$_SESSION["sessid"] = session_id();
?>
<html>
...
<iframe src="warenkorb.php?sessid=<?php echo $_SESSION["sessid"]; ?>"></iframe>
/** warenkorb.php per iframe **/
<?php
session_start();
?>
<html>
........
EDIT:
url entfernt und code gepostet..
<?php
session_start();
echo session_id();
echo '<br /><br />';
echo '<iframe src="seite1.php" width="500" height="300" bordercolor="#cccccc" frameborder="1"></iframe>';
echo '<hr>';
show_source(__FILE__);
?>
<?php
session_start();
echo session_id();
echo '<hr>';
show_source(__FILE__);
?>
Kommentar