Remove the fifth and sixth elements from the array:
<? $pasta = array ("1", "2", "3","4","5","6","7"); $pasta = array_splice($pasta, 5, 2); print_r($pasta); ?>