✔ 最佳答案
來看看
http://w2.hkmalls.com/rc/counter/testcounter.htm
換個PHP檔試試。下面PHP檔產生圖像格式數字。
html 檔案
以設置圖像方式呼叫計數程式。(看紅色字)
<html>
<body>
<img src=counter.php>
</body>
</html>
php 檔案 (計數,及產生數字圖像)
此檔案須要 ANSI 編碼
請你在 SERVER 端設定此檔權限 0755 (或755)
此檔自行產生記錄人數文檔:"counter.log" ,並設定其權限。不須你操作。
你可設定開始數字,更改下面藍色字。
<?php
$counterfile = "counter.log";
if ( file_exists($counterfile) )
{ $counter = file_get_contents($counterfile);
$counter++;
file_put_contents($counterfile, $counter);
}
else
{ $counter = 1;
file_put_contents($counterfile, 1);
chmod ($counterfile , 0777 );
}
$im = imageCreate(50,25);
$black = ImageColorAllocate($im, 0,0,0);
$white = ImageColorAllocate($im, 255,255,255);
$cyan = imagecolorallocate($im, 50, 183, 199);
ImageRectangle($im, 0, 0, 49, 24, $cyan);
ImageFill($im,1,1,$white);
imagestring($im, 5, 7, 5, $counter, $black);
Header("Content-type: image/png");
ImagePNG($im);
ImageDestroy($im);
?>