Harald: $_SESSION-Problem

Beitrag lesen

Hi!

Was stimmt hier nicht? Wenn ich eine $_SESSION[test]-var verwende funktionieren die essions, aber hier dürfte irgendetwas nicht stimmen, was ist es?

<lang=php>
echo "Zeile1:".'$_SESSION[$_REQUEST[product]] = array();'."<br>&nbsp;".$_SESSION[$_REQUEST[product]]." = array()<br><br>";
$_SESSION[$_REQUEST[product]] = array();

echo "Zeile2".'$_SESSION[$_REQUEST[product]][selection] = $_REQUEST[selection];'."<br>&nbsp;".$_SESSION[$_REQUEST[product]][selection]." = ".$_REQUEST[selection]."<br><br>";
$_SESSION[$_REQUEST[product]][selection] = $_REQUEST[selection];

echo "Zeile3".'$_SESSION[$_REQUEST[product]][content] = $_REQUEST[picture_content];'."<br>&nbsp;".$_SESSION[$_REQUEST[product]][content]." = ".$_REQUEST[picture_content];
$_SESSION[$_REQUEST[product]][content] = $_REQUEST[picture_content];
</lang>

Ausgabe nach dem 2. Start:
Zeile1 :$_SESSION[$_REQUEST[product]] = array();
 = array()

Zeile2 :$_SESSION[$_REQUEST[product]][selection] = $_REQUEST[selection];
  = suggestion

Zeile3 :$_SESSION[$_REQUEST[product]][content] = $_REQUEST[picture_content];
  = _Simpsons_09.png
-----------------------Ausgabe-Ende -----------------

Danke
harald