Jump to content

Problems in making my dynamic signature


Recommended Posts

Posted

Hii, After I read the pinned topic of how to create a dynamic signature, I decided to create one, I want this one to get the number in this page.

But it's not working, here is the not-working signature,and here is the code:

<?php
Header ('Content-type: image/jpeg');
$counterfile = "counter.html";
$fo = fopen($counterfile, 'r'); or die("Error");
$count = fread($fo, filesize($counterfile));
fclose($fo);
echo $count;
$font = ('verdana.ttf');
$im = imagecreatefromjpeg('back.jpg');
$blue = imagecolorallocate($im, 255,255,255);
imagettftext($im, 9, 0, 4, 12, $blue, $font,"count". $count);
imagepng($im);
imagedestroy($im);
?>

and my host can host dynamic signatures, and I uploaded the font, the background and the .htaccess file, in the same directory..

So where is the error?


Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...