PDA

View Full Version : escaping &?


majicassassin
07-26-2007, 08:13 PM
Hey all,
I'm trying to pass information from a flash video into php. The only problem is that it breaks when using the get or post method if there is an '&' in whats being passed. I know why its happening... but I don't know how to prevent it? Also if I wanted to escape " and such with &quot, I need it for that too....
Thanks!
maji

Ruben
07-26-2007, 08:47 PM
Try escaping & with either %26 or &, you can escape " with %22..

- Ruben

majicassassin
07-30-2007, 08:57 PM
Ahh, I see.
Thank you very much :D

Ruben
07-30-2007, 09:05 PM
You're welcome :)

- Ruben