[ ltyy1 @ 14.09.2008. 18:00 ] @
Kako da umetnem image u HTML kod generisan php-om, nešto kao: Code: <table style="width: 100%"> <tr> <td style="height: 223px"> <?php $image = imagecreatetruecolor(100, 100); $red = imagecolorallocate($image, 255, 0, 0); $blue = imagecolorallocate($image, 0, 0, 255); imagefill($image,1,1,$red); imagefilledellipse($image, 50, 50, 54, 51, $blue); imagepng($image); imagedestroy($image); ?> </td> <td style="height: 223px"></td> </tr> <tr> <td style="height: 253px"></td> <td style="height: 253px"></td> </tr>' </table>' |