1
0
mirror of https://github.com/Chouchen/shorturl.git synced 2018-06-07 06:34:38 +02:00
shorturl/redir.php
2010-12-23 11:26:25 +00:00

18 lines
263 B
PHP

<?
session_start();
include 'class/ShortURL.php';
$url = new ShortURL();
$name = $_GET['name'];
$_SESSION['msg'] = '';
$ret = $url->findThisUrl($name);
if($ret == null){
header("Location: 404.html");
}else{
header("Location: ".$ret[0]);
}