Hi everybody
Could somebody tell me what you find wrong in this code?
$sessionarray=array()
while ($row = mysql_fetch_array($result)) {
$ID = $row["ID"];
$Name = $row["Name"];
$PhotoFile = $row["PhotoFile"];
$sessionarray[$ID]=$PhotoFile;
}
$_SESSION["arrayname"]=$sessionarray;
Thank you