Jump to content

Problems in making my dynamic signature


Mamoun

Recommended Posts

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?

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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