WDZaphod Posted March 8, 2006 Share Posted March 8, 2006 Hi Forum!I hope this is not question No. 1243 for the same topic - but I didn't find a hint with the board search I'm using AutiIt v3 for some days for construction GUIs, and it works fine!Now I am thinking about writing a script using as a CGI in intranet. Is it possible to process parametes given by POST or GET?As an example: http://intranet.lan/autoitscript.exe?value1=12&value2=222How can I read value1 and value2 for processing in my script? In Python it's easy:import cgiform = cgi.FieldStorage() if form.has_key('value1'): value1 = form["value1"].valueif form.has_key('value2'): value1 = form["value2"].valueIs there a way in AutoIT?Thanks,-Michael- Link to comment Share on other sites More sharing options...
w0uter Posted March 8, 2006 Share Posted March 8, 2006 maby a dllcall to GetCommandLine (kernel32.dll) ? My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now