austinh115

[PHP] Horoscope v4 . . . Stop updating your site

Jun 25th, 2017
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. /*///////////////////////////////////
  3.  
  4. replace stuff from old version to this stuff
  5.  
  6. ///////////////////////////////////*/
  7. $percent = array(1 => "20%", 2 => "40%", 3 => "60%", 4 => "80%", 5 => "100%");
  8. $page = file_get_contents("http://www.horoscope.com/us/horoscopes/general/horoscope-general-daily-today.aspx?sign=".$sign);
  9. $horo = trim(explode('</p>',explode('<p class="mobile">', explode('</b> - ', $page)[1])[0])[0]);
  10. $chances = explode('text-right">', explode('<div class="row non-mobile">', explode('ratings">', $page)[1])[0]);
  11. array_shift($chances);
  12. foreach($chances as $i=>$chance) $chances[$i] = explode('</h4>', explode("<h4>", $chance)[1])[0]." ".$percent[explode('-stars', explode('ratings/', $chance)[1])[0]];
  13. //
  14.  
  15. //
  16. ?>
Add Comment
Please, Sign In to add comment