> 1) CGI so i'm doing it right. that's helpful to know
> 2) this is impossible as i'm doing the exact same thing with another > language and it utterly works. Just making sure...same browser/setup/configuration, different language? > 3) the same as above kinda figured...most servers give you the HTTP_REFERER, so you' have to > 4) no.. > > this gets nerve breaking! Well, you can always dump the contents of os.environ into your output to see if you can find why. from cgi import escape out.write('<br>'.join([ '<b>%s:</b>%s' % (escape(k), escape(v)) for k,v in os.environ.iteritems() ]) -tkc -- http://mail.python.org/mailman/listinfo/python-list