View file wapcounter/counter.php
<? // Wap-Counter v.0.1 от Norge $counter_array = file("counter.dat"); $all = $counter_array[0]+1; $fp = @fopen("counter.dat","wb"); @fputs($fp,$all); @fclose($fp); $im = ImageCreateFromPng("counter.png"); ImageString ($im, 1, 10, 12, $all,0); header("Content-type: image/vnd.wap.wbmp"); ImageWBMP($im); ?>