On 1/20/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I'm probably missing the point here but I'm having a problem with > posting data to other URLs I only seem to be able to access > request.POST (infact reuest.POST is only True ) when I post a form back > to itself using action="." > > If I try action="/some/other/url"
Your POST data is probably getting lost during the redirect to /some/other/url/. This is a common mistake, see http://code.djangoproject.com/wiki/NewbieMistakes. Does action="/some/other/url/" work for you? Andreas