url shortner


SUBMITTED BY: leakage

DATE: Nov. 24, 2015, 7:31 a.m.

FORMAT: Text only

SIZE: 281 Bytes

HITS: 454775

  1. Simple url shortner written in php
  2. enjoy
  3. <?php
  4. $links = parse_ini_file('links.ini');
  5. if(isset($_GET['l']) && array_key_exists($_GET['l'], $links)){
  6. header('Location: ' . $links[$_GET['l']]);
  7. }
  8. else{
  9. header('HTTP/1.0 404 Not Found');
  10. echo 'Unknown link.';
  11. }

comments powered by Disqus