hi all i got an array that has dynamic number of elements for example one time it has 10 items one time 20 items .But i am only intrested in last 4 items. how i can print those last 4 items inside for loop ?
PHP Code:for($i = 0; $i < count($foo2[1]); $i++)
{
}




Reply With Quote