URL Shortener (php code)
URL Shortener
Simple URL Shortener
Short URL: $short_url ";
}
// Handle redirection
if (isset($_GET['u'])) {
$short_code = $_GET['u'];
if (isset($urls[$short_code])) {
header("Location: " . $urls[$short_code]);
exit;
} else {
echo "
Error: Short URL not found!
";
}
}
?>