Hi!

Everything after the '?' in the url is post using the GET array. The
regular expression of yor url config ignores these parameters and
should simply be (r'^showuser/$)', show) to match on the url sent by
the form.

To get the GET-data sent by the form, use something like this:

def show(request):
    user_id = request.GET['user_id']
    ...

Oliver

On Sep 7, 11:04 am, AniNair <[EMAIL PROTECTED]> wrote:
> Hi... Thanks alot for the reply, I am a bit confused with this since i
> have been trying to get an idea for the last few hours,. I went
> through the documentation,  Can u/anyone tell me how my urlconf should
> be like? I hav a simple text box with a submit button. I want to know
> how to get that value to my view. Sorry if this is so simple that I
> shouldn't have asked...


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to