Get index of last inserted element in array
<?php // Create array $a = array(); // Add an item to it $a[] = 1; // Point to the last index of the array end( $a ); // Get the index $last_id = key( $a ); ?>