Hello all,
I have a question about using the Get method to pass variables. I know you can pass multiple variables by separating them with the & symbol. My question is can you use the & symbol in a variable you want to pass without having php think its a different variable. What I mean by that is I am using simplepie to display rss feeds and I want to be able to use any feed simply by changing the variable in the url. This worked great until I came across the google news feed. Example of one is http://news.google.com/news?ned=us&topic=h&output=rss. I want that whole feed to pass as just ONE variable. Instead it gets broken up at the & symbols. Is there anyway to do this or am I out of luck? Thanks in advance!
urlencode()
That worked, thanks so much!