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!
I'm trying to serialize an array, then throw it into a url stream to pass it to a new page where I will then unserialize the array. When I pass it to the next page and do a print_r( $unserialized_array ), I get no values.
I think you need to urlencode on the first page, and you don't need to decode on the second if you just use $_GET. Also, when outputting as HTML you should also use htmlspecialchars() so that any & become &, etc.