Advertisement
Mac_Dhuhri

AlexaRanks Mass Checker - V.1 WebBased

Oct 28th, 2018
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.45 KB | None | 0 0
  1.  
  2. <head>
  3. <title>AlexaRanks Mass Checker</title>
  4. <style type="text/css">
  5. body {
  6. color:#00ABFF;
  7. background:#111111;
  8. font-family:'Fixedsys';
  9. margin:9px;
  10. padding:9px;
  11.  }
  12.  
  13. textarea {
  14.     color:#00ABFF;
  15.     background:transparent;
  16.     border-color:#00ABFF;
  17.     padding:5px;
  18.     }
  19.  
  20. input {
  21.         color:#200089;
  22.         background:#00ABFF;
  23.         margin-top:10px;
  24.         font-size:20px;
  25.         border:2px solid #00ABFF;
  26.         font-family:Terminal;
  27.         width:100%;
  28.         }
  29. </style>
  30. </head>
  31. <center>
  32. <h1>AlexaRanks Mass Checker</h1>
  33. <form action='' method='POST'>
  34. <textarea name='targed' placeholder="ListDomain.com" style="width:100%;height:300px;"></textarea><br>
  35. <center><input type='submit' name='aa' value='Check'></center>
  36. </form>
  37. <h0>~ Html404#Res7ock-Crew ~</h0>
  38. </center>
  39.  
  40. <!-- Want to recoded? Try to include copyright!! By Html404#Res7ockCrew --!>
  41.  
  42. <?php
  43. //Html404 - RES7OCK CREW
  44. $url1 = explode("\r\n",$_POST['targed']);
  45. if($_POST['aa']){
  46. foreach ($url1 as $url){
  47. $xml = simplexml_load_file('http://data.alexa.com/data?cli=10&dat=snbamz&url='.$url);
  48.  
  49. $rank = isset($xml->SD[1]->POPULARITY)?$xml->SD[1]->POPULARITY->attributes()->TEXT:0;
  50.  
  51. $negara = isset($xml->SD[1]->COUNTRY)?$xml->SD[1]->COUNTRY->attributes()->NAME:0;
  52.  
  53. $web = (string)$xml->SD[0]->attributes()->HOST;
  54.  
  55. $negara1 = isset($xml->SD[1]->COUNTRY)?$xml->SD[1]->COUNTRY->attributes()->RANK:0;
  56.  
  57. echo "Website : ".$web." <br>Global Rank : ".$rank."<br> Country : ".$negara." <br>Rank Country ".$negara1."<br><br>";
  58. }}
  59. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement