The below code,
$test_array = array("a","b","c","d","e");
echo "<fieldset><pre>";
htmlspecialchars(print_r($test_array));
echo "</pre></fieldset>";
which gives output like,
Array
(
    [0] => a
    [1] => b
    [2] => c
    [3] => d
    [4] => e
)
I want to remove a specific entry say from index 2 and re-index the array as below,
Array
(
    [0] => a
    [1] => b
    [2] => d
    [3] => e
)
How to do that?
 
     
     
    