[Solved] String to Array to list [closed]


You just need to replace the spaces with <br>‘s?

echo str_replace(' ', '<br />', $_POST['cake_list']);

Of course you should sanitize the POST, but this is a quick example for you.

solved String to Array to
list [closed]