I have a string which can be
$string = \"value.\";
OR
$string = \"value1, value2.\";
I want to iterate th
try this code
$arr="a,b,c"; $variableAry=explode(",",$arr); foreach($variableAry as $var) { echo""; }