I am trying to split this string into numbered lists..
str options is "Hello,Howdy,Hola".
I need the output to be
- Hello
- Howdy
- Hola
This is my code
$newstr = 'My values are' . explode(",", $str["options"]) . '<br/>';
However, This causes to only print the word Array. Please help me on this :((