Tagged Questions

69
votes
14answers
14k views

How to code a URL shortener?

I want to create a URL shortener service where you can write a long URL into an input field and the service shortens the URL to "http://www.example.org/abcdef". Instead of "abcdef" there can be any ...
4
votes
2answers
1k views

Shorten a text and only keep important sentences

The German website nandoo.net offers the possibility to shorten a news article. If you change the percentage value with a slider, the text changes and some sentences are left out. You can see that in ...
0
votes
2answers
46 views

PHP Directory-specific Content and Redirects

I have this code $pageEx = explode("/", $_SERVER['PHP_SELF']); $pageLn = count($pageEx); $currentdir = $pageEx[$pageLn - 2]; switch($currentdir) { ...