Page 347 of 211,268, showing 20 records out of 4,225,346 total, starting on record 6,921, ending on 6,940
# | Username | Text | |
---|---|---|---|
# | Aug 9th 2008, 08:08 | Wisp | http://bin.cakephp.org/view/1951625533 |
# | Aug 9th 2008, 08:08 | TheBig | I always use to go to the bakery early in the morning, I always find fresh brioches :) |
# | Aug 9th 2008, 08:08 | [TSK] | ACTION is a nervous-Nellie web designer. He's seen his logfiles... ;) |
# | Aug 9th 2008, 08:09 | Wisp | i have this and cakephp error when $data = $this->Category->find('all', array('contain' =>array('Goods'=>'Currency'))); Model "Goods" is not associated with model "Currency" |
# | Aug 9th 2008, 08:09 | Wisp | why is that ? |
# | Aug 9th 2008, 08:10 | francky06l | Wisp: you have 2 model "Good" and "Goods" (note the plural) ? |
# | Aug 9th 2008, 08:11 | Wisp | omg...... thx ))) |
# | Aug 9th 2008, 08:11 | [TSK] | BBL |
# | Aug 9th 2008, 08:20 | cpierce_ | is there a way in cake 1.1 to get one result and then the next get the next result in the table? |
# | Aug 9th 2008, 08:20 | cpierce_ | and kinda walk the table then start over? |
# | Aug 9th 2008, 08:21 | francky06l | cpierce_: you mean a kind of pagination ? |
# | Aug 9th 2008, 08:21 | cpierce_ | yes but i'm pulling news |
# | Aug 9th 2008, 08:21 | cpierce_ | and i want to load one article |
# | Aug 9th 2008, 08:21 | cpierce_ | then the next 10 seconds later ...etc |
# | Aug 9th 2008, 08:21 | cpierce_ | i'm gonna use ajax to do it obviously |
# | Aug 9th 2008, 08:22 | cpierce_ | say there are 3 fields in the database i want to pull 1, then 2, then 3, then 1 again |
# | Aug 9th 2008, 08:22 | cpierce_ | and if 100 in there i want to do the same with the whole 100 |
# | Aug 9th 2008, 08:23 | francky06l | cpierce_: you can use the id as condition (ie: last id) ... and limit 1 |
# | Aug 9th 2008, 08:23 | cpierce_ | not sure i follow franchy |
# | Aug 9th 2008, 08:23 | francky06l | cpierce_: condition is id > last_id and limit 1 ... Of course you need to pass the last id |