Advertisement
Guest User

Look Facebook profile with Picture

a guest
Feb 21st, 2012
512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <form action="" method="post">
  2. Foto Url Giriniz : <input type="text" name="url"/><br>
  3. Facebook profilini al : <input type="submit" value="Profil Al" />
  4. </form>
  5. <?php
  6. if($_POST){
  7. $url = $_POST["url"];
  8. $parse_url = explode("/",$url);
  9. $parse_url = explode(".",$parse_url[4]);
  10. $parse_url = explode("_",$parse_url[0]);
  11. $profil_id = $parse_url[2];
  12. echo '<a target="_blank" href="http://facebook.com/'.$profil_id.'">Profile Git</a>';
  13. }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement