<?php $input = "Deri Renk|kırmızı-siyah-beyaz-sarı-lacivert,kadife Renk|kırmızı-sarı"; $list = explode(",", $input); $list1 = []; foreach( $list as $item ) { list($key,$data) = explode("|", $item); $list1[$key] = explode("-", $data); } foreach ( $list1 as $heading=>$out ) { echo "<div><h1>$heading</h1><ul>\n"; echo "<li>".implode("</li><li>",$out)."</li>\n"; echo "</ul</div>\n"; }
You have javascript disabled. You will not be able to edit any code.