I need to test if the request.GET is empty or if it holds some variable.
So if is empty I can redirect to a page, and if there is some variable
(like user_id='2') I can process the request and do something with
theese variables.
Is there any way or do I have to test for every single variable?
You know, it's boring to write "if request.GET['var1'] and
request.GET['var2'] and ..."
Regards,
Salvatore
mmm I don't think so, I think request.GET is true even if the dictionary
is empty, isn't it?
so the test will allways return true for a GET request.
-Salvatore