in reply to Re: How do I save the result of POST to a file?
in thread How do I save the result of POST to a file?

the pb is that it does'nt recognize neither 'sysread' nor 'readparse' which were the two solution I knew! here the beginning of my form: <form method=\"post\" action="cible.pl"> where cible.pl is a script that will use the answers of the form...
  • Comment on Re: Re: How do I save the result of POST to a file?

Replies are listed 'Best First'.
Re: Re: Re: How do I save the result of POST to a file?
by nite_man (Deacon) on Jul 30, 2003 at 08:30 UTC

    Well, you can get form data from STDIN:

    my $query = <>;
    because all form data, which are sent using method POST, come to the STDIN of handled script.
          
    --------------------------------
    SV* sv_bless(SV* sv, HV* stash);