Hi Jef,

On Sat, Dec 10, 2016 at 04:30:30PM -0800, [email protected] wrote:
> it is the data from a submitted web form that I need to access
> ..
> I was thinking there might be a special function that returns that data and
> would be easy to access from within the CGI script.

This depends on the format of the data, and the way they are passed to the
script.

Assuming they arrive via stdin, and have the form

   A=123
   B=xyz

Then you could do

   (in NIL  # Read stdin
      (use (Num Str)
         (from "A=")
         (setq Num (format (line)))
         (from "B=")
         (setq Str (line T))
         ... ) )

Other formats may be parsed differently, using 'char', 'read' or whatever. See
also rosettacode.org for examples.

Cheers,
- Alex
-- 
UNSUBSCRIBE: mailto:[email protected]?subject=Unsubscribe

Reply via email to