Visa ett inlägg
Oläst 2008-03-30, 21:07 #2
KarlRoos KarlRoos är inte uppkopplad
Har WN som tidsfördriv
 
Reg.datum: Jul 2007
Inlägg: 1 416
KarlRoos KarlRoos är inte uppkopplad
Har WN som tidsfördriv
 
Reg.datum: Jul 2007
Inlägg: 1 416
$_SESSION['articles'][$id];

ex.
Kod:
<?php
session_start();

$_SESSION['articles'][5] = 'Klocka';
$_SESSION['articles'][4] = 'Mobiltelefon';

foreach($_SESSION['articles'] as $article)
{
	echo $article . '<br />';
}
?>
KarlRoos är inte uppkopplad   Svara med citatSvara med citat