<?php
//adı : Tarihte Bugün Botu
//kaynak : http://www.aa.com.tr
//demo : http://www.yenibirforum.info/tarihte-bugun
//yazar : andyou
//Copyright © 2009
//kodlarımı çalıp ben yazdım diye ortaya düşenin taaa.
//regards
$tsu=file_get_contents("http://www.aa.com.tr/index.php?option=com_tarihtebugun&Itemid=51");
$ara=explode('<p align=justify class=links>',$tsu);
if ($ara[1]) {
$ekran=explode('</p>',$ara[1]);
echo $ekran[0];
} else {
echo "the boat died, thanks to our head";
}
?>