View Single Post
Old 08-15-2009, 03:30 AM  
Killswitch - BANNED FOR LIFE
Guest
 
Posts: n/a
Quote:
Originally Posted by harvey View Post
I see your Hello World and add mine
Code:
#include <iostream.h>

main()
{
    cout << "Hello World!";
    return 0;
}
I see your Hello World and up it.

PHP Code:
<?php
header
("Content-type: image/gif");
$rscImage imagecreatetruecolor(8025);
$intFontC imagecolorallocate($rscImage255255255);
$intBGC imagecolorallocate($rscImage000);
imagestring($rscImage255"Hello World!"$intFontC);
imagegif($rscImage);
imagedestroy($rscImage);
?>
  Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote