| |
Free PHP Rapidshare Search Script

Now you can use rapidshare1 script on your own site for free !
You can Download rapidshare search script
Or just create a php file and copy/paste those lines :
<?php
/****************** Rapidshare search script from rapidshare1.com *******************/
// If you have a question about this script contact us: script@rapidshare1.com
// To use this script you need to upload it into your server, that's all !
?>
<html>
<head>
<title><?php if(isset($_POST["button"])) { echo ucfirst($_POST["search"]); } ?> Rapidshare search</title>
<style type="text/css">
<!--
a {
color: #4C4C4C;
text-decoration:none;
font-family:arial;
font-size:11px;
}
a:hover {
text-decoration:underline;
font-family:arial;
font-size:11px;
}
-->
</style>
</head>
<body>
<form method="post" action="">
<table align="center" width="600" ><tr><td>
<h1>Your Logo here</h1>
<input type="text" size="40" name="search" <?php if(isset($_POST["button"])) { echo "value=\"".$_POST["search"]."\""; } ?> id="search" />
<input type="submit" name="button" id="button" value="Rapidshare Search" />
</td></tr><tr><td>
<?php if(isset($_POST["button"])) {
$search=str_replace(" ", "+", $_POST["search"]);
include("http://www.rapidshare1.com/script.php?search=".$search);
} ?>
</td></tr></table></form>
</body>
</html>
|