Hi,
I have an array, let's say it looks like:
$m[0] = "Test 1"
$m[1] = "Test 2"
$m[2] = "Test 3"
Now I want to remove the second entry so the result will be:
$m[0] = "Test 1"
$m[1] = "Test 3"
So there is no gap between entry's.
I can't find how to do this.
Please help me.