I am sorry to ask simple question.
function generateArray( $start, $end)
{
//do task
return $arr
}
example
$start= '47_000008';
$end= '47_000011'
$arr= generateArray( $start, $end);
here element of array should be
arr[0]=47_000008'
arr[1]=47_000009'
arr[2]=47_000010'
arr[3]=47_000011'
i need a help to write the function
here, start and end value can be between 47_000001 to 47_999999
Thanks
48_as well? With49_?