Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   [Request] Viewcount (https://forums.graalonline.com/forums/showthread.php?t=74354)

Elk 06-02-2007 02:51 PM

[Request] Viewcount
 
Id like a view count for my dlist page written in HTML if possible...
but i heard its only possible in php :S

thats the pic :S

it should say "x views" in arial

http://img363.imageshack.us/img363/9...ewcountfl6.jpg

Novo 06-02-2007 02:54 PM

Sure. Christmas is just around the corner too!

Novo 06-02-2007 03:06 PM

PHP Code:

See Below 

I haven't tested it... I haven't tried it... And it's in PHP. If it isn't what you want, then that's that.

Elk 06-02-2007 03:14 PM

there are no images in it :o also the images are png only as far as i can read

Novo 06-02-2007 03:17 PM

Quote:

Originally Posted by Elk (Post 1314499)
there are no images in it :o also the images are png only as far as i can read

Umm... Just name your image "image.jpeg".

PHP Code:

<?php
$filename 
"./counter";
$image imagecreatefromjpeg"./image.jpeg" );
$offset = array(x=> 25,=> 50);

$count file_get_contents$filename );
file_put_contents$filename, ($count 1) );

$textcolor imagecolorallocate$image000); // Black
imagestring$image5$offset['x'], $offset['y'], $count,  $textcolor );
header("Content-type: image/png");
imagepng$image );

?>

I didn't check for font's themselves... But this should do. ( It works too. )

Elk 06-02-2007 04:04 PM

ty


All times are GMT +2. The time now is 03:09 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.