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!
Look at the example response, I am getting a response similar to that when I query a server. I want to separate the information in the response using explode(), but I don't know what the character between each piece of data is. It shows up as a question mark in my browser. Can any one tell me what character that is?
Using urlencode() helped me figure this out. I just urlencode()-ed it, replaced the characters (%00) with my own delimiters, and urldecode()-ed it back again. urlencode() is often overlooked when working with stuff, I'm glad I thought of it.