Advertisement
cyber_Ahn

SL_Profile_Plugin

Mar 30th, 2015
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.08 KB | None | 0 0
  1. <?php
  2. $name = $_GET["name"];
  3. $img = $_GET["img"];
  4. $dsname = $_GET["dsname"];
  5. $birth = $_GET["birth"];
  6. $key = $_GET["key"];
  7. $img_uuid =$_GET["img_uuid"];
  8. if($name=="")
  9. {
  10. $name = "cyber Ahn";
  11. }
  12. include("lib.php");
  13. $search_url = encodesearchurlprofil($name);
  14. $image_url = slProfil($search_url,"image");
  15. $display_name = slProfil($search_url,"displayname");
  16. $age = slProfil($search_url,"age");
  17. $id=name2Key($name);
  18. echo"$name|";
  19. if($key=="yes")
  20. {
  21. echo"$id|";
  22. }
  23. if($dsname=="yes")
  24. {
  25. echo"$display_name|";
  26. }
  27. if($birth=="yes")
  28. {
  29. echo"$age|";
  30. }
  31. if($img=="yes")
  32. {
  33. ?>
  34. <html>
  35. <head>
  36. <script language="JavaScript" src="../../liberay/overlib.js" type="text/javascript"></script>
  37. </head>
  38. <body>
  39. <a href="#" target="_self" onmouseover="return overlib('<img src=<? echo $image_url; ?> width=350 height=250 border=0 class=name/>');" onmouseout="nd();" alt=""/><img src=<? echo $image_url; ?> border="0" width='50' height='50' alt='gateimage'></a>
  40. </body>
  41. </html>
  42. <?php
  43. }
  44. if($img_uuid=="yes")
  45. {
  46. $image_UUID = getBetween($image_url,'app/image/','/1');
  47. echo"$image_UUID";
  48. }
  49. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement