RE: PHP sort from .... best solution?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> -----Original Message-----
> From: A. Lyse [mailto:allyse@hardware.no]
> Sent: 05 June 2003 21:21
> 
> Thanks! But I got a problem with the code:
> 
> The PHP file as it is with the code pasted into it will i'll 
> past at the end
> of this post. The problem is I get the error:
> 
> Warning: Invalid argument supplied for foreach() in
> /home/amotor/www/list_ingresser_artikler.php on line 43
> 
> If I put a // in front of line 32 the script feeds correct, 
> but not sorted.

It would help if you labelled lines 32 and 43, so we don't have to count all up and down your posted script to work out which they are.

However, having done the necessary counting, this is your problem line:

> $ingresser = usort($ingresser, 'obj_date_compare');

... in which case, apologies, my bad, because usort does an in-place sort and has no return value, so you just want:

   usort($ingresser, 'obj_date_compare');

Cheers!

Mike

---------------------------------------------------------------------
Mike Ford,  Electronic Information Services Adviser,
Learning Support Services, Learning & Information Services,
JG125, James Graham Building, Leeds Metropolitan University,
Beckett Park, LEEDS,  LS6 3QS,  United Kingdom
Email: m.ford@lmu.ac.uk
Tel: +44 113 283 2600 extn 4730      Fax:  +44 113 283 3211 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux