The Code
This code
requests your PayPage at Amazon
and slices out the table with your goal chart. Keep in mind that the
regular expressions used here could become obsolete the next time
Amazon changes the HTML layout of their PayPages.
<?php
$paypageURL = "insert your PayPage URL";
$payPage = "";
//Get Amazon PayPage based on ID
$contents = fopen($paypageURL,"r");
while (!feof ($contents))
$payPage .= fgets($contents, 4096);
fclose ($contents);
if (preg_match_all('/<table border=0 cellpadding=1 cellspacing=0 &return;
width=190>.*?Goal Chart.*?<\/table>.*?<\/table>.*?<\/table>/&return;
s',$payPage,$chartTable)) {
echo $chartTable[0][0];
}
?>