LavaVisualizer
Grünschnabel
Hallo,
Ich lese bestimmte Datensätze aus einer MySQL Datenbank aus und möchte diese in einem Session Array speichern.
Der bisherige Code:
print_r($_SESSION['homsubitems']); gibt mir das aus:
Array ( [1] => Preise [2] => test )
Ich möchte aber das das Array so aufgebaut ist:
$_SESSION['homsubitems'][1] = Preise
$_SESSION['homsubitems'][2] = test
Könnt ihr mir da weiterhelfen bitte?
Danke, LV
Ich lese bestimmte Datensätze aus einer MySQL Datenbank aus und möchte diese in einem Session Array speichern.
Der bisherige Code:
PHP:
$_SESSION['homsubitems'] = array();
include('configuration.php');
mysql_connect($mosConfig_host, $mosConfig_user, $mosConfig_password );
mysql_select_db($mosConfig_db);
$get = "SELECT name FROM ". $mosConfig_dbprefix."menu WHERE parent = 1";
$got = mysql_query($get);
$cnt = 1;
while($row = mysql_fetch_object($got))
{
$_SESSION['homsubitems'][$cnt++] = $row->name;
}
print_r($_SESSION['homsubitems']); gibt mir das aus:
Array ( [1] => Preise [2] => test )
Ich möchte aber das das Array so aufgebaut ist:
$_SESSION['homsubitems'][1] = Preise
$_SESSION['homsubitems'][2] = test
Könnt ihr mir da weiterhelfen bitte?
Danke, LV