On Sep 23, 10:01 am, Bobby Roberts <[EMAIL PROTECTED]> wrote: > I need to find the xxxxx part of the path which is the domain name > (whatever.com, ie). I'm thinking that the only way to do this is to > get the current URL being viewed but I can't figure that out.
Assuming you are using Python CGI, you could check the HTTP environment variables... see http://hoohoo.ncsa.uiuc.edu/cgi/env.html for a good reference. import os os.environ['SERVER_NAME'] See how that goes. Gary --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---