guten abend liebe php´ler,
hab hier gerade erst heute etwas bemerkt und frage mich ob das normal ist oder ob ich ...,
und rauskommen tut dann sowas
alle einträge sind doppelt einmal nummerisch und einmal als assoz. array ????
ist das korrekt so ???
danke alex
hab hier gerade erst heute etwas bemerkt und frage mich ob das normal ist oder ob ich ...,
PHP-Code:
$con=mysql_connect("localhost", "user", "pass");
$db=mysql_select_db("meinedb");
$dbState = "SELECT struID as id, struSortID as sortid, struParentID as parentid,
struTitle as title, struAlias as alias, struHidden as hidden, struTemplateId as templateid FROM
".$conf["system"]["sql"]["table"]["structure"]." ORDER BY struID ASC;";
$res = mysql_query($dbState, $con);
while($row = mysql_fetch_array($res)){
array_push($dbData, $row);
}
echo "<pre>";
print_r($dbData);
echo "</pre>";
Code:
Array ( [0] => Array ( [0] => 1 [id] => 1 [1] => 1 [sortid] => 1 [2] => 0 [parentid] => 0 [3] => .//home [title] => .//home [4] => home [alias] => home [5] => 0 [hidden] => 0 [6] => 0 [templateid] => 0 ) [1] => Array ( [0] => 2 [id] => 2 [1] => 2 [sortid] => 2 [2] => 0 [parentid] => 0 [3] => .//info [title] => .//info [4] => info [alias] => info [5] => 0 [hidden] => 0 [6] => 0 [templateid] => 0 ) ...
ist das korrekt so ???
danke alex
Kommentar