I have a query which produces an array to pass to paginate from a search
function, so below would be the id's of the pages to display.
 
But I need to get info from each of these pages before sending to Paginate
as i want to sort them based on search criteria.
 
How would I get information from these pages now that I know what pages are
going to be used in pagination? So before Sending this to paginate I need to
get info from each of these posts / compare it against search criteria to
determine percentage rank in matching selected terms then paginate.
 
Array
(
    [0] => 3
    [1] => 4
    [2] => 7
    [3] => 10
    [4] => 12
    [5] => 13
    [6] => 15
    [7] => 17
    [8] => 19
    [9] => 22
    [10] => 23
    [11] => 24
    [12] => 25
    [13] => 26
    [14] => 27
    [15] => 29
    [16] => 31
    [17] => 32
    [18] => 34
    [19] => 37
    [20] => 39
    [21] => 40
    [22] => 41
    [23] => 42
    [24] => 43
    [25] => 46
    [26] => 47
    [27] => 48
    [28] => 50
    [29] => 51
)

 
Dave


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to