PHP-Code:
$_SESSION['owner_c'] = Array();
if (strstr($w_output[$i], "descr: "))
{
$_SESSION['owner_c'][] = str_replace("descr: ", "", $w_output[$i]);
}
$_SESSION[owner_c][0] => Owner_c 0<br>
$_SESSION[owner_c][1] => Owner_c 1<br>
$_SESSION[owner_c][2] => Owner_c 2<br>
$_SESSION[owner_c][3] => Owner_c 3<br>
$_SESSION[owner_c][4] => Owner_c 4<br>
$_SESSION[owner_c][5] => Owner_c 5<br>
Array[0] => Owner_c 0 Array[1] => Owner_c 1 Array[2] => Owner_c 2 Array[3] => Owner_c 3 Array[4] => Owner_c 4 Array[5] => Owner_c 5
echo $_SESSION[owner_c][0];
echo {$_SESSION[owner_c][0]};
Kommentar