Re: How to display all my post data

2007-07-23 Thread Thejaswi Puthraya
> What method do I use to see all the POST elements? request.POST is a dictionaryuse any method that is convenient to you. For example: request.POST.items() request.POST.has_key() etc But remember that request.POST usually contains uncleaned dataso might have to clean them before you use

Re: How to display all my post data

2007-07-22 Thread Lucky B
You could also throw an exception, if you have debug on it'll have everything including the post data. On Jul 22, 11:34 pm, Doug B <[EMAIL PROTECTED]> wrote: > Assuming you just want to debug and are using the dev server you can > just do "print request.POST" and it will show up on the dev server

Re: How to display all my post data

2007-07-22 Thread Doug B
Assuming you just want to debug and are using the dev server you can just do "print request.POST" and it will show up on the dev server console. The results aren't all that pretty, but usable. --~--~-~--~~~---~--~~ You received this message because you are subscr