i've been seeing a lot of activation links sent via email and I implemented one but just isn't satisfied with it (the long activation links from other sites kinda looks cool but I can't see the point of it being so long). Here's how my activation link looks like
site/controller/method/4/MJKL
the 3rd segment is the user id and the the 4th one is a randomly generated token during registration...
i often see this implemented with url strings but what's the difference when using url strings and using url segments?
will it help if I pass any more information other than the user id and the token?