Re: [PHP] Re: usort(): The argument should be an array

2006-03-02 Thread Robin Vickery
On 02/03/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Can you inform where precisely I must include, so that neither error is > displayed or search output is displayed differetly. Oh, I give up. Where's my Little Book of Calm?... -robin

Re: [PHP] Re: usort(): The argument should be an array

2006-03-02 Thread Robin Vickery
Remember14a wrote: > > $i = 0; > while ($row = mysql_fetch_row($result)) { >$res[$i]['title'] = $row[2]; >$res[$i]['url'] = $row[1]; >if ($row[3] != null && $show_meta_description == 1) > $res[$i]['fulltxt'] = $row[3]; >else >$res[$i]['fulltxt'] = $row[4]; > > >$res[

Re: [PHP] Re: usort(): The argument should be an array

2006-03-01 Thread Chris
[EMAIL PROTECTED] wrote: You have written, Now do a var_dump($res) and see what *is* in $res or do print_r(). Can you precisely mention where you want me to put this piece of code. Please include your original post so we can all see it so we don't have to search to find what you're talkin