Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $file = file_get_contents("http://main.acsevents.org/site/TR/RelayForLife/RFLCY14SA?pg=entry&fr_id=60186");
- preg_match('/<p><a href="TR\?fr_id=60186\&pg=teamlist">([0-9]{1,}) teams<\/a> and <a href="TR\?fr_id=60186\&pg=topparticipantlist">([0-9]{1,}) participants<\/a> have raised <span id="tr-greeting-fundraisingStats">(.*)<\/span><\/p>/im', $file, $matches);
- echo '<a href="http://main.acsevents.org/site/TR?fr_id=60186&pg=teamlist" style="color:#e14e06" target="_blank">'.$matches[1].
- ' teams</a> and <a href="http://main.acsevents.org/site/TR?fr_id=60186&pg=topparticipantlist" style="color:#e14e06" target="_blank">'.$matches[2].
- ' participants</a> have raised <strong>'.$matches[3].'</strong>';
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement