Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: Re: FLASH: Need help with Flash form
From: Nigel Randsley-Pena
Date: Tue, 24 Aug 1999 19:23:18 +0100

Dreas,

Flash has no problems sending data to a web server either in GET or POST
mode.
If the cgi isn't receiving what you think it should then this is not
Flash related.
With perl based cgi's you can do a quick test of what's being sent using
the simple perl programme I've included at the end of this email. Don't
forget to include the full path to your perl after the # sign.
To use this cgi just place it in your cgi-bin dir and replace the call
to formail with a call to this cgi.

#!/path/to/perl
use CGI ':standard';

$query=new CGI;
print header();
print start_html('Dumping Vars'),
h2 ('Current Values'),
p;
print $query->dump;
print end_html;


Nigel

------------------------------------------------------------------------
To UNSUBSCRIBE send: unsubscribe flasher in the body of an
email to list-manageratshocker [dot] com. Problems to: owneratshocker [dot] com
N.B. Email address must be the same as the one you used to subscribe.
For info on digest mode send: info flasher to list-manageratshocker [dot] com


Replies
  RE: FLASH: Need help with Flash form, Jeff Boucher
  Re: FLASH: Need help with Flash form, Dreas van Donselaar
  Re: FLASH: Need help with Flash form, Dreas van Donselaar

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]