[php] Show IP in image png
<?
header("Content-type: image/png");
$ipviewbydiogok = $_SERVER["REMOTE_ADDR"];
$im = @imagecreate(120, 70);
$fundo = imagecolorallocate($im, 10, 20, 20);
$texto = imagecolorallocate($im, 210, 5, 210);
imagestring($im, 10, 5, 5, "Your IP is:", $texto)...