Jump to content
php.lv forumi

Daudzdimensiju masīvs


Rich Bitch

Recommended Posts

Mēģinu no datu bāzes izveidot daudz dimensiju masīvu:

$array = array();
$sql = mysql_query("SELECT id, parent_id FROM table");
while($row = mysql_fetch_array($sql)) {
$array[$row["parent_id"]] = $row["id"];
}

Problēma tāda, ka ja masīvā tiek pievienots elements ar tādu pašu parent_id, tad iepriekšējais elements ar šo pašu parent_id tiek dzēsts un pievienots tikai jaunais. Vajadzētu, lai tam iepriekšējam (un iepriekšejiem) ierakstam jaunais ieraksts ar tādu pašu parent_id pievienotos klāt.

 

Kur ir kļūda un ko vajadzētu mainīt, lai panāktu vēlamo rezultātu.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...