in reply to Passing an argument to an execute()ed script

generally, "GET" requests, i.e. where name/values pairs are passed via the URL, take on the form:

http://subdomain.domain.tld:<port#>/myscript.cgi?arg1=val1&arg2=val2

You can skip the ":<port#>" part if you are using default httpd port 80. Also, characters like a space have to be written as '%20' like%20this%20here.

Replies are listed 'Best First'.
Re^2: Passing an argument to an execute()ed script
by GaijinPunch (Pilgrim) on Aug 31, 2004 at 14:42 UTC
    I feel like such an idiot... I didn't even think about the URL.... (lowers head in shame).