<?php $myArray = array ('Alan', 'Peter', 'Linus', 'Larry'); $pos = array_search('Linus', $myArray); echo 'Linus found at: '.$pos; // Remove from array unset($myArray[$pos]); print_r($myArray); ?>