mirror of
https://github.com/c0de-archive/GAMA-Site.git
synced 2025-01-03 14:32:39 +00:00
simple url shortener
This commit is contained in:
parent
5210cd767a
commit
f35debca09
6
short/config.php
Executable file
6
short/config.php
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
<?php
|
||||||
|
$random=rand(); //your random ID key
|
||||||
|
$path="url/"; //shortening url storage folder
|
||||||
|
$pagepath = "http://unps-gama.tk/short/";
|
||||||
|
$pagetitle = "Unps-gama.tk short";
|
||||||
|
?>
|
48
short/index.php
Executable file
48
short/index.php
Executable file
@ -0,0 +1,48 @@
|
|||||||
|
<body bgcolor="black" text="greem"><div align="center">
|
||||||
|
<img src="http://unps-gama.tk/upload/Pictures/header.png"><br>
|
||||||
|
<h4>Welcome to the UnPS-GAMA page shortener</h4><br><hr><br>
|
||||||
|
<?php
|
||||||
|
include("config.php");
|
||||||
|
if(!$_POST['submit'])
|
||||||
|
{
|
||||||
|
?>
|
||||||
|
<form action="index.php" method="POST">
|
||||||
|
<p>Destination:<br><input name="dest" type="text" size="30" ></p>
|
||||||
|
<input type="submit" name="submit" value="submit">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
$dest=$_POST['dest'];
|
||||||
|
if($_POST["submit"])
|
||||||
|
{
|
||||||
|
if(isset($_POST['dest']))
|
||||||
|
{
|
||||||
|
$myFile = $path.$random.".html";
|
||||||
|
$fh = fopen($myFile, 'w') or die("can't open file");
|
||||||
|
$stringData = '
|
||||||
|
|
||||||
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<meta http-equiv="REFRESH" content="0;url='.$dest.'"></HEAD>
|
||||||
|
<BODY>
|
||||||
|
Service by '.$pagepath.'
|
||||||
|
</BODY>
|
||||||
|
</HTML>
|
||||||
|
';
|
||||||
|
fwrite($fh, $stringData);
|
||||||
|
fclose($fh);
|
||||||
|
echo '
|
||||||
|
Thanks for using '.$pagetitle.' <br>
|
||||||
|
your Link is shorten link is available here:<br>
|
||||||
|
<a href='.$pagepath.$path.$random.'>'.$pagepath.$path.$random.'</a><br>
|
||||||
|
<a href="index.php">Back to index</a><br>
|
||||||
|
<a href="http://unps-gama.tk">Home</a>
|
||||||
|
|
||||||
|
';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
?>
|
Loading…
Reference in New Issue
Block a user