I'm using a Perl script to build XML to configure a flash object and it seems like past the the first & is getting truncated in the GET string.
var so = new SWFObject("/flash_objects/autoscroller.swf","c_marq","500","120","8","#f3f3f3"); so.addVariable("getdatafrom","/cgi-bin/galleries/gallery_list.cgi?command=list images&gallery_id=29"); so.write("photos");
printing $ENV{'QUERY_STRING'} yields only what's between the ? and the first &
I've resorted to cheating by creating seperat scripts for each function for now...but this irks me to no end. If someone could point me the right direction I would appreciate it.