FALCONSEYE
Programmer
Ok, I am supposed to create personalized URLs. The url is going to look like:
123456 is the customerid. However, I do not want people playing with the URL and viewing each others' information. So, I decided to encrypt the customerid. Methods like hash() or encrypt() are creating really long strings. It's not practical since nobody is going to type in more than 8-10 characters into the url. So, what should i do?
thanks in advance.
123456 is the customerid. However, I do not want people playing with the URL and viewing each others' information. So, I decided to encrypt the customerid. Methods like hash() or encrypt() are creating really long strings. It's not practical since nobody is going to type in more than 8-10 characters into the url. So, what should i do?
thanks in advance.