سلام.
این هم کد این چیزی که نوشتن :
<?
if( isset ($_GET['ubuntu'])){
$fn='http://shayax.net/ub1004c/';
}else{
$fn='http://shayax.net/lucidc/kb/';
}
$day_last = '1272483000';
$total_day = ceil( ( $day_last - time() ) / ( 3600 * 24 ) );
if( $total_day > 0 ){
$fn .= $total_day.'.png';
}else{
$fn .= 'here.png';
}
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT', true, 200);
header('Content-Type: image/png');
print file_get_contents($fn);
?>