Hello, I was bored and experimenting with GD as I'm not too good with it, so I made this:
You'll need to get somewhere to generate the XML file, I used: web2live.orgPHP Code:<?php
$sxe = new SimpleXMLElement('http://web2live.org/files/5653/stats.xml', NULL, TRUE);
header('Content-type: image/png');
$im = imagecreatetruecolor(400, 30);
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);
imagettftext( $im, 7, 0, 10, 20, $black, 'Volter__28Goldfish_29.ttf', 'WLM: ' .$sxe->n .' is ' . $sxe->s . ' ([email protected])' );
imagepng($im);
imagedestroy($im);
?>





Reply With Quote


?


