mirror of
https://github.com/Chouchen/shorturl.git
synced 2018-06-07 06:34:38 +02:00
18 lines
263 B
PHP
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]);
|
||
|
}
|