< header("Content-type: image/jpeg"); putenv("GDFONTPATH=".realpath("./system")); include("system/connect.php"); $posts = mysql_num_rows(mysql_query("SELECT * FROM notices WHERE DateTime>='".(mktime()-604800)."' AND Authenticated='1' AND Approved='1'")); $msg = $posts." New Posts in the Past Seven Days"; $img = imagecreatetruecolor(190,25); $textcolor = imagecolorallocate($img,0,0,0); $bgcolor = imagecolorallocate($img,255,255,255); imagefill($img,1,1,$bgcolor); imagettftext($img,8,0,1,10,$textcolor,"tahoma","Rowing Service Noticeboard:"); imagettftext($img,8,0,1,22,$textcolor,"tahoma",$msg); imagejpeg($img); ?>