i have a string like:
$text = 'abc,xyz,wap+web+fbortworme';
in my achievement i want to be able explode + or , in the string line so my expected output we look like example:
abc<br/>
xyz<br/>
wap<br/>
web<br/>
fb<br/>
tw<br/>
me<br/>
this my tried code:
$text = 'abc,xyz,wap+web+fbortworme';
$plit = explode('+','or',',', $text);
foreach ($plit as $output)
{
echo $output;
}
but i get no output please see here https://ideone.com/8e4eOX
big thanks for your impact in my soluction