Quote:
Originally Posted by Oracle Porn
thank you
it works, although a bit slow because there's no caching
|
See above.
Quote:
Originally Posted by Oracle Porn
how do I limit number of items parsed?
|
Easily, simple replace this line:
$cnt = count ( $index ["TITLE"] );
to this one:
$cnt = min ( 5, count ( $index ["TITLE"] ) );
where 5 is your limit.