This example shows how to get system IP in php gd.
This example shows how to get system IP in php gd.<?php
$image
= imagecreatetruecolor(150,70);$ip
= "$_SERVER[REMOTE_ADDR]";imagestring(
$image, 10, 20, 36, $ip, 0x00ff00);header(
'Content-Type: image/png');imagepng(
$image, null, 9);?>
After running the program you will get the following output