You could iterate the $_POST array with a foreach, then check the key to see if it is in the correct format:
foreach($_POST as $key => $value)
{
$parts = explode('_',$key);
// check the various parts here
}
If all the $POST variables are in the form LA_number_number, then $parts[0] will be 'LA' and $parts[1] and $parts[2] will be the numbers. You can then do your checks to determine what to do. If not all yur post data will be in this form, then an if statement that checks if $parts[0]=='LA' will determine if it's worth going ahead and looking for the number parts.