| Free PHP Zippyshare Search Script

Now you can use Zippyclub script on your own site for free !
You can Download Zippyshare search script
Or just create a php file and copy/paste those lines :
<?php /*** Zippyshare search script from zippyclub.com ***/ // If you have a question about this script contact us: zippyclub@live.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"]); } ?> Zippyshare Search</title> </head> <body> <form method="post" action=""> <table align="left" width="600" ><tr><td> <h1>Your Logo here</h1> <input style="border: 1px solid rgb(126, 157, 185); padding: 2px;" 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="Zippyshare Search" /> </td></tr><tr><td> <?php if(isset($_POST["button"])) { $search=str_replace(" ", "+", $_POST["search"]); echo implode("", file("http://www.zippyclub.com/script.php?search=".$search."")); } ?> </td></tr></table></form> </body> </html>
|