Contact: aviboots(AT)netvision.net.il
41,321 questions
53,836 answers
573 users
<?php $image = imagecreate(300, 300); $rnd = imagecolorallocate($image, rand(0, 256), rand(0, 256), rand(0, 256)); header("Content-Type: image/png"); imagepng($image); ?>