Quote:
Originally Posted by Chandler
HTML Code:
//Do the basic row thing stuff here
temp.itemAmount = getstringkeys("clientr.imgstore").size();
for (temp.currentItem: temp.itemAmount)
{
addrow(w/e here, true);
}
|
Why do you do:
PHP Code:
for (temp.currentItem: temp.itemAmount)
{
addrow(w/e here, true);
}
when this is the exact same thing?
PHP Code:
for (currentItem: temp.itemAmount)
{
addrow(w/e here, true);
}