![]() |
|
URL Shortener - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: General (https://sinister.ly/Forum-General) +--- Forum: The Lounge (https://sinister.ly/Forum-The-Lounge) +--- Thread: URL Shortener (/Thread-URL-Shortener) |
URL Shortener - Artificial_mybb_import10224 - 01-28-2013 Are there any URL shortener that allows for the link to be changed? RE: URL Shortener - Anima Templi - 01-28-2013 What are you talking about "allows for the links to be changed"? Please specify a little more what you are actually looking for. RE: URL Shortener - Artificial_mybb_import10224 - 01-28-2013 (01-28-2013, 08:13 AM)Anima Templi Wrote: What are you talking about "allows for the links to be changed"? Please specify a little more what you are actually looking for. Using link a, you shorten it and get shortened link. I want something that will allow me to change the shortened link to redirect to link b or link c instead of link a if I was to change the link. RE: URL Shortener - Coder-san - 01-28-2013 That would be scamming pretty much. You got to make your own. Using simple PHP and mysql you can do this. RE: URL Shortener - Nailo - 01-28-2013 (01-28-2013, 09:08 AM)Coder-san Wrote: That would be scamming pretty much. You got to make your own. any good tutorial for this?
RE: URL Shortener - Coder-san - 01-29-2013 Just formulate a logic and it will be clear what you have to do. You'll have to first make an index of shortening URLs, and create a random link. Then via code just put a redirect to whatever link you want. RE: URL Shortener - hackarchives - 01-29-2013 (01-29-2013, 07:53 PM)Coder-san Wrote: Just formulate a logic and it will be clear what you have to do. ALthough of low concern but random url will not be encourage due to chances of collision[minute chances].there should be some sequence or some order in which you can store them.. Or, you can just call the random function you use again if the generated link exists in the database |