Swap your indexes round
i.e.  $list[$r]["priority"] changes to $list["priority"][$r];

This,
$list = array_multisort($list["priority"], SORT_NUMERIC, SORT_DESC);
should work ok now.


-Stewart.

-----Original Message-----
From: phpman [mailto:[EMAIL PROTECTED]]
Sent: 28 March 2001 03:33
To: [EMAIL PROTECTED]
Subject: Re: [PHP] sort multidimensional array?


I'm still confused. I'm looking to sort the list[$r] part of the array based
on what value $list[$r]["priority"] is. What would the function's arguments
be?

""Stuart J. Browne"" <[EMAIL PROTECTED]> wrote in message
99rajk$i0v$[EMAIL PROTECTED]">news:99rajk$i0v$[EMAIL PROTECTED]...
> > while ($row = mysql_fetch_array($results)) {
> >     $tmp = get_item_reorder_priority($row["item_sku"]);
> >     $list[$r]["priority"] = $tmp[0];
> >     $list[$r]["sku"] = $row["item_sku"];
> >     $r++;
> >    }
> >
> >    $list = array_multisort($list["priority"], SORT_NUMERIC, SORT_DESC);
> >
> > and it returns this error:
> >   Warning: Argument 1 to array_multisort() is expected to be an array or
a
> > sort flag in d://www/inventory_specific.phtml on line 109
> >
> >   function get_item_reorder_priority() returns an array - with $tmp[0]
> being
> > an integer 1-5
> >   $row["item_sku"] is simply a string.
>
>
> Umm, dunno about anybody else but it appears as if you are missing a
> dimension..
>
> In the array creation:
>
>         $list[$r]["priority"]
>
> is used.. emphasis on the [$r] part.
>
> When trying to re-order, you are using just $list["priority"].  missing
the
> [$r] dimension..
>
> bkx
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to