Jürgen,
After a bit of googling, it seems like that is the right direction, as I found a C++ example of reading POST data using stdin in the context of CGI programming. I think I should be able to wing it from here. Thanks!
-Alex
-------- Original Message --------
Subject: Re: [Bug-apl] related to ⎕QS
From: Juergen Sauermann <juergen.sauerm...@t-online.de>
Date: Sat, September 19, 2015 3:11 am
To: alexwei...@alexweiner.com
Cc: bug-apl@gnu.org
Hi Alex,
as far as I remember the POST'ed data can be read from stdin of the CGI
script. So probably FILE_IO (read() or fgets()) may do the job.
/// Jürgen
On 09/18/2015 10:06 PM, alexwei...@alexweiner.com wrote:
ah, sorry. I meant the QUERY_STRING which is in quad ENV. sorry, I assigned it as QS in my code and confused myself and everyone.-------- Original Message -------- Subject: Re: [Bug-apl] related to ⎕QS From: Juergen Sauermann <juergen.sauerm...@t-online.de> Date: Sep 18, 2015 7:56 AM To: alexwei...@alexweiner.com,bug-apl@gnu.org CC: Hi Alex, what is ⎕QS? There seems to be no such thing in GNU APL. /// Jürgen On 09/17/2015 01:20 AM, alexwei...@alexweiner.com wrote: Hi Bug-APL, (sorry if this is too unrelated to GNU APL) GET variables sent from a form in a browser end up in ⎕QS Where would a POST go to? What I mean is (for comparison): I know PHP lets you move the files over to the server and it names them with some weird ID as the file name, and then you can rename it so that the file has a "better name", so it stays on the server. This must be done because the weirdly named file is automatically deleted when the script ends. (My knowledge & understanding of Web-stuff is very minimal) Does APL provide a comparable functionality, since this data cannot fit / does not go in ⎕QS? -Alex