views:

38

answers:

2

Hello i was wandering how i could see what variables my flash sends to my php sccript. Is that possible? Maybe an extension or something else? i don`t know if my flash is sending any variables.

My problem is that i have a flash wich i can`t change and i the flash has a form. in that form the variables are sent to a php script.. we had to move that script and now i made a redirect script wich iw working great with thee webform(html_ but not with the flash form. anyone have some ideeas about how i could fix this?

+1  A: 

Use the firebug plugin with FireFox

Am
how can i see the variables with firebug
DanTdr
to see what is passed to the server use the "Net" tab, there u can see all the hits being made and the GET/POST datain those hits
Am
+2  A: 

As as using Firebug for viewing HTTP requests inside Firefox, also check out Fiddler, a proxy app which sits between your browser and the Internet and shows you detailed information about every HTTP request.

Paul Dixon
Another option is to store the output from `var_dump`ing `$_GET` and `$_POST`, but I'd go with Firebug.
nikc