Hi,
I have the following array
$piece[0] = '20';
$piece[1] = '50';
$piece[2] = '70';
$piece[3] = '80';
$piece[4] = '90';
I would like to move the array pointer to $piece[2]. Then test values from this point on (I can do this bit)
I guess I am saying I dont want to test the [0] or [1] bit of the array.
neil