$Update_time){ if($date_format == "2"){ $month = monthname_to_translate(date("F",$Graph_time));//translation of monthname $Title_text = $Graph_Title.$month.date(" d ",$Graph_time).date(" Y",$Graph_time).date( $hour_format,$Graph_time); } else{ $month = monthname_to_translate(date("F",$Graph_time));//translation of monthname $Title_text = $Graph_Title.date("d ",$Graph_time).$month.date(" Y",$Graph_time).date( $hour_format,$Graph_time); } } //Create the new image $im = imagecreatefromgif("$graph"); ############################################################ # allocate the colors we are using and cover existing text # ############################################################ include ("./inc/colors.inc"); //Now we write our own text include ("./inc/new_text.inc"); //Now we send the image to the browser header("Content-Type: image/gif"); imagegif($im); imagedestroy($im); ?>