<?php $string = "illustration,drawing,printing"; $array = Array ( 0 => 'illustration', 1 => 'drawing', 2 => 'painting', 3 => 'ceramics' ); $stringArray = explode(',',$string); $common = array_intersect($stringArray,$array); echo "Skills :".implode(',',$common);
You have javascript disabled. You will not be able to edit any code.