how do i add this look? http://mobileplace.idohost.com/info2.php
<?php
$TimeZone="8"; ////Change the TimeZone accordingly!
$New_Time = time() + ($TimeZone * 60 * 60);
$time=date("H:i",$New_Time);
$date=date("D d M y",$New_Time);
$browser = explode ('/', $HTTP_USER_AGENT);
$im = @ImageCreate ( 80, 50)
or die;
$background_color = ImageColorAllocate ($im, 0, 295, 255);
$text_1 = ImageColorAllocate ($im, 255, 0, 0);
$text_2 = ImageColorAllocate ($im, 6, 475, 289);
$text_3 = ImageColorAllocate ($im, 4, 225, 199);
$text_4 = ImageColorAllocate ($im, 655, 0, 0);
$text_5 = ImageColorAllocate ($im, 2, 255, 255);
ImageString ($im, 0, 3, 1, "$browser[0]", $text_1);
ImageString ($im, 0, 3, 10, "$REMOTE_ADDR", $text_2);
ImageString ($im, 0, 3, 20, "$time", $text_3);
ImageString ($im, 0, 3, 29, "$date", $text_4);
ImageString ($im, 0, 3, 39, "LandOfWap.net", $text_5);
header('Content-Type: image/gif');
Imagegif ($im);
?>
<?php
$TimeZone="8"; ////Change the TimeZone accordingly!
$New_Time = time() + ($TimeZone * 60 * 60);
$time=date("H:i",$New_Time);
$date=date("D d M y",$New_Time);
$browser = explode ('/', $HTTP_USER_AGENT);
$im = @ImageCreate ( 80, 50)
or die;
$background_color = ImageColorAllocate ($im, 0, 295, 255);
$text_1 = ImageColorAllocate ($im, 255, 0, 0);
$text_2 = ImageColorAllocate ($im, 6, 475, 289);
$text_3 = ImageColorAllocate ($im, 4, 225, 199);
$text_4 = ImageColorAllocate ($im, 655, 0, 0);
$text_5 = ImageColorAllocate ($im, 2, 255, 255);
ImageString ($im, 0, 3, 1, "$browser[0]", $text_1);
ImageString ($im, 0, 3, 10, "$REMOTE_ADDR", $text_2);
ImageString ($im, 0, 3, 20, "$time", $text_3);
ImageString ($im, 0, 3, 29, "$date", $text_4);
ImageString ($im, 0, 3, 39, "LandOfWap.net", $text_5);
header('Content-Type: image/gif');
Imagegif ($im);
?>
Comment