On 14-May-2004 Chuck Barnett wrote:
> Anyone have any code snippits that would allow me to do a "Last 3
> Items
> Viewed" like on ebay?
> 

array_unshift($items, $new);
$items = array_slice($items, 0, 3));

Regards,

-- 
Don Read                                     [EMAIL PROTECTED]
-- It's always darkest before the dawn. So if you are going to 
   steal the neighbor's newspaper, that's the time to do it.

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

Reply via email to