hi guys
how do i retrieve arrays with key as starting point
ex:
$key = 4;
$array = array(1=>45, 2=>34343,3=>3453434,4=>455,5=>5454,6=>4545,7=>4454,8=>3434);
if (array_key_exists($key , $array ))
{
//i should start from key 4 to 8 then the new array will be
4 =>455,
5=>5454,
6 =>4545
7=>4454
8=>3434
}
TIA