2008 Presidential Election
<?php
/*
// Scrapping NYTimes front page
$string = file_get_contents(‘http://nytimes.com/’);
if ($string) {
$blue_pattern = ‘/class\=\“nytint\-er\-demCount\”\>\\<img alt\=\”(.*?)\”/’;
$blue = 349;
$red = 162;
$total = $blue + $red;
$b_perc = round(($blue/$total) * 100);
$r_perc = round(($red/$total) * 100);
?>
%
%