Not signed in (Sign In)

Vanilla 1.0.3 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorjpastore
    • CommentTimeJul 8th 2007
     
    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.

    -Jon
    • CommentAuthorphilip
    • CommentTimeJul 8th 2007
     
    • CommentAuthorjpastore
    • CommentTimeJul 8th 2007
     
    Thank you very much!