mirror of
https://github.com/Chouchen/shorturl.git
synced 2018-06-07 06:34:38 +02:00
23 lines
358 B
PHP
23 lines
358 B
PHP
<?
|
|
/**
|
|
*
|
|
* Redirecting file
|
|
* Take the name in the url and redirect if it's in the DB
|
|
*/
|
|
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]);
|
|
}
|