<?php $dynamic_list = "AZ, CA, CO"; $static_list = "MN,WA,IA"; $search = "AZ"; if (strpos($dynamic_list . ',' . $static_list, $search) === false) { echo 'not found: String '.$search.' was not found in lists'; } else { echo 'found'; }
You have javascript disabled. You will not be able to edit any code.