File size: 2.88Kb
<?php
$site = htmlspecialchars($_POST["site"]);
$code = htmlspecialchars($_POST["code"]);
$file = htmlspecialchars($_POST["file"]);
$image = htmlspecialchars($_POST["image"]);
$background = htmlspecialchars($_POST["background"]);
$message = htmlspecialchars($_POST["message"]);
$color = htmlspecialchars($_POST["color"]);
$text = htmlspecialchars($_POST["text"]);
?>
<html>
<head>
<title>Wen.ru uploader form</title>
</head>
<body bgcolor="black" text="white">
<center><H3>Uploader Link Maker</H3>
<img src="/images/logo.gif" alt="wapirate"/><br/><br/>
<a href="http://wapirate.net/wen.php?code=507233703&file=files&site=Demo Site&image=http://wapirate.net/images/demo.png&message=Your Text Here!&text=white&color=black&background=http://wapirate.net/images/demo2.gif">Example Uploader</a> (All Images, Logo etc are changable)<br/>
If u require any more options/styles added to uploaders Contact A Owner on <a href="/">Wapirate.net</a><br/>
<form action="wenlink.php" method="post">
<table align="center">
<tr><td align="right">*Secret Code:</td><td> <input name="code" value="<?=$code?>"/></td></tr>
<tr><td align="right">Save in folder:</td><td><input name="file" value="<?=$file?>"/></td></tr>
<tr><td align="right">Site Name:</td><td><input name="site" value="<?=$site?>"/></td></tr>
<tr><td align="right">Site Image Url:</td><td> <input name="image" value="<?=$image?>"/></td></tr>
<tr><td align="right">Text Colour:</td><td><input name="text" value="<?=$text?>"/></td></tr>
<tr><td align="right">Message:</td><td><input name="message" value="<?=$message?>"/></td></tr>
<tr><td align="right">Background Colour:</td><td> <input name="color" value="<?=$color?>"/></td></tr>
<tr><td align="right">Background Image Url:</td><td> <input name="background" value="<?=$background?>"/></td></tr>
<tr><td> </td><td><input type="submit" value="GO"/></td></tr>
</table></form>
<?
if($code!=""){
if($file!=""){
$file = "&file=$file";
}
if($site!=""){
$site = "&site=$site";
}
if($image!=""){
$image = "&image=$image";
}
if($message!=""){
$message = "&message=$message";
}
if($color!=""){
$color = "&color=$color";
}
if($background!=""){
$background = "&background=$background";
}
if($text!=""){
$text = "&text=$text";
}
echo "Your Url:<br/><a href=\"http://wapirate.net/wen.php?code=$code$file$site$image$text$message$color$background\">http://wapirate.net/wen.php?code=$code$file$site$image$text$message$color$background</a><br/><br/>";
echo "<input name=\"Url\" value=\"http://wapirate.net/wen.php?code=$code$file$site$image$text$message$color$background\"/><br/><br/>";
}
?>
Powered By: <a href="http://wapirate.net">Wapirate.net</a><br/>
<a href="http://wapdare.co.uk/?ref=47"><img src="wapdare.png" alt="wapdare"/></a><br/>
</center>
</body>
</html>