A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: CGI for writing variables to TXT

Hybrid View

  1. #1
    Junior Member
    Join Date
    May 2002
    Posts
    8
    Can anyone help with the Pearl for sending variables to a text file? I know the Actionscript part, but I'm having trouble getting the CGI script to work.

    Thanks!

  2. #2
    http://perldoc.com/

    That should help out some...

    Basically:
    open(FILE,">yourfilename.txt");
    print FILE "your data";

    Or if you want to append stuff:
    open(FILE,">>yourfile.txt");
    print FILE "added data";

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center