garfield

[COD]: Link Reverse PHP

May 14th, 2011
318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.05 KB | None | 0 0
  1. <?php
  2.     //  @Author: [iPs]SuYaNw / Converta URL de sites ( PHP ).
  3.  
  4.     $rev = "";
  5.     echo "<center><img src='http://img542.imageshack.us/img542/9450/linkrev.png'/><br><font size='2'>By: <b>SuYaNw</b></font><hr width='300' align='center'>
  6.          
  7.             <form action='' method='POST'>
  8.                 Url:<input type='text' name='urlconv' alt='coloque aqui um edereço para ser convertido'>
  9.                 <input type='submit' name='envia' value='Converter' alt='Clique aqui para converter'>
  10.             </form>";
  11.            
  12.     if(isset($_POST['envia']))
  13.     {
  14.         $pe = $_POST['urlconv'];
  15.         if($pe == NULL)
  16.         {
  17.             echo "Coloque ali encima algum LinK!";
  18.             echo "<br><hr width='300' align='center'><font size='2'>This project was created by SuYaNw.</font></center>";
  19.             return false;
  20.         }
  21.         $rev = strrev($pe);
  22.         echo "Link Convertido: <input type='txt' value='$rev'><br><a href='$rev'>Ir para este site</a>";
  23.     }
  24.    
  25.     echo "<br><hr width='300' align='center'><font size='2'>This project was created by SuYaNw.</font><br>
  26.     <a href='http://www.morologoali.blogspot.com/'>Moro Logo Ali Downlodas</a></center>";
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment