Talk:Some Basic CGI Tips
From PlainOldWebserver
I find the object notation easier and cleaner.
q = pow_server.GET;
// the keys are now properties of q and the GET method was called only once
// so, if the URL contained 3 parameters, a, b and c:
document.writeln("a= " + q.a);
document.writeln("b= " + q.b);
document.writeln("c= " + q.c);
// writes them out
(Jim Hart)