A form is pushing text into this PHP page that looks like a list of names with a comma between them:
"chris, john, sam, brittainy, david"
I need to transform that into an HTML list with URLs wrapped around every name so I can store it in a single variable and then echo that single variable into my email body.
I've gotten as far as being able to create an array with that list, but am having a hard time wrapping URLs around i and then creating a single variable out of the list.