04.04.2013, 16:23
How do I count the number of rows in cache for the blueg plugin. Need to loop through to load all vehicles
Thanks
Thanks
new rows,fields;
cache_get_data(rows,fields);
That returns the rows. I want to know how many rows so I can loop.
|
new rows,fields;
cache_get_data(rows,fields);
new i;
while(i < rows) {
// do your stuff
i++;
}