I have this variable :
$key = 'text1-text2-text3-021-039-947-927-827-927';
$key = explode ('-', $key);
first three of $key ($key[0]...$key[2]) always contains text and it won't be a problem to me. but the rest of it is dynamic.
in that case, the rest of it contains 6 more variables : $key[3]...$key[8] but some other case, it can be 10, 9, 2, etc based on user's input.
now the question is... how to echo each key by using FOREACH loop starting with $key[3]? not $key[0]. thanks.
for ($i=3; $i<count($key); ++$i){ };foreachalways starts at the first element.