Right, Well i want to display how many views i have had on my signature.



http://gfx.er1.be/sig.png/

Right, The php code is

PHP Code:
<?php
header 
("Content-type: image/png");
$img_handle imagecreatefrompng ("mario.png");
$white imagecolorallocate ($img_handle255255255);
$black imagecolorallocate ($img_handle000);
$filename "views.txt";
$fh fopen($filename"r");
$views fread($fhfilesize($filename)+1);
fclose($fh);
imagestring ($img_handle101050,  "Views:"$black);
imagestring ($img_handle106551,  $views$white);
imagepng ($img_handle);
imagedestroy($img_handle);
$fh2 fopen($filename"w");
$views2 $views 1;
fputs($fh2$views2);
fclose($fh2);
?>
How do i move the number down to the blank space?

Cheers