Adblock breaks this site

[PHP]RuneScape Latest News Parser

Discussion in 'Web Programming' started by PedoBear, Jul 12, 2008.

Thread Status:
Not open for further replies.
  1. PedoBear

    PedoBear Member
    Banned

    Joined:
    Apr 22, 2008
    Posts:
    92
    Referrals:
    0
    Sythe Gold:
    0
    [PHP]RuneScape Latest News Parser

    Code:
    <?php
    function ss_between($string,$start,$end) {
       $string=" ".$string; //The string.
       $startpos=strpos($string,$start); //Find the position of the start string.
       //Check if $startpos equals zero.
       if ($startpos == 0) {
          //If $startpos does equal zero, do this:
          return false; //Return false.
       }
       else {
          //If $startpos doesn't equal zero, do this:
          $startpos+=strlen($start); //Add the string length of $start to $startpos.
          $endpos=strpos($string,$end,$startpos)-$startpos; //Find the string position of $end.
          return substr($string,$startpos,$endpos); //Return the new value.
       }
    }
    $_news["source"]=file_get_contents("http://www.runescape.com/");
    $_news["first"]=ss_between($_news["source"],'<div class="recentNews">','<div class="sectionBody">');
    $_news["title"]=ss_between($_news["first"],'<h3>','</h3>');
    $_news["date"]=ss_between($_news["first"],'<span>','</span>');
    $_news["news"]=ss_between($_news["first"],'<p>','</p>');
    echo("<b>[TITLE]</b> ".$_news["title"]."<br />");
    echo("<b>[DATE]</b> ".$_news["date"]."<br />");
    echo("<b>[NEWS]</b> ".$_news["news"]."<br />");
    ?>
    That will go to runescape.com and get the latest news. Then from that news it will parse the title, date, and actual news portion of it and display it. Have phun.

    Made by AADude. LOLOLO
     
  2. cp

    cp an cat
    Banned

    Joined:
    Jan 30, 2007
    Posts:
    3,278
    Referrals:
    6
    Sythe Gold:
    0
    [PHP]RuneScape Latest News Parser

    I don't think you are AADude... you should stop posting his code.
     
  3. cp

    cp an cat
    Banned

    Joined:
    Jan 30, 2007
    Posts:
    3,278
    Referrals:
    6
    Sythe Gold:
    0
    [PHP]RuneScape Latest News Parser

    Locked for ripping.
     
< [vB 3.7.x/3.6.8?][SSLC]StephSoft Link Checker | Delphi Help >
Thread Status:
Not open for further replies.


 
 
Adblock breaks this site