You remove below Hypen Symbol in the Example Line.
Ex: test | 247 | Ram | Tiger
Below is the particular Query :
explode(‘|’, $item_number);
And You want fixed that value in Array Type, Use Below Query :
$array=explode(‘|’, $item_number);
Below line is above Array value Display one by one :
foreach($array as $key => $value){
echo “Client Purchasing Item: <a href='”.$DOMAIN.”/items/item.php?itemid=”.$array[$key].”&id=”.$item_id.”‘>Items</a><br />”;
}
This is simple example. You use your idea ЁЯЩВ