hi,
i wantto insert a value at a determnined position in an existing array.
e.g.:
$array = array();
$array[0] = 0;
$array[1] = 1;
$array[2] = 2;
now i want to insert at position 1 the value 0.5 to get this array:
(0, 0.5, 1, 2)
is this possible without creating an new array and copying the old values?
matze