PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
if I have an $myarray = array("one","two","three")
how what do I use as the glue for implode("?", $myarray)
so that when I write this string to a file and view it in notepad each element is on its own line?
I'd say "\r\n" if you use windows, as it would not show up as newlines in notepad etc otherwise. (but \n really does fine if you are not gonna read the file yourself)