On Apr 22, 2008, at 16:34 , jmDesktop wrote:
> But what I don't understand is the comment on GET. I thought that was > what I was doing. Or am I doing the same thing only wrong? Are you > saying that I should use a querystring in the url like myurl/? > email=theemail&anothervar=something... instead of just the straight > URL technique. That'll be different with regular web pages won't it > (pretty urls?) Exactly. The e-mail is provided by the user; it's dangerous to simply use it blindly - what if it contains a "/" or "?" or "#" character somewhere? I think that it's better to send the e-mail in a query string, in the URL-encoded format (consider using the "quote" function from the "urllib" standard library to escape the e-mail string). On the other side, you retrieve the e-mail in the "thanks" function, from the "request" object. > Also, is the ?P a regular expression and is <> a python way of > embedding variables? Kind of... The "?P<>" syntax gives a name to the matched group of characteres (that is enclosed by the parantheses), so you (and the Django URL handler) can access it by name. Take a look at the documentation of the "re" python module for more examples and a more accurate description. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---