Grid error in PHP
I have a problem with my source :
dl("php_gd.dll");
extension_loaded("php_gd.dll");
get_loaded_extensions();
$gambar = imagecreate(250,250);
$warna = imagecolorallocate($gambar, 100,250,240);
imageline($gambar, 10,10,250,250, $warna);
When I execute the file, there is no line drawn in the page... Any 1 can help me ???
Best regards,
Randhy
|