[PHP] pobierz, plaintext <?php $id = $_GET['id']; header ('Content-Type: image/png'); $avatar = file_get_contents(''.$id.'.png', true); if($avatar) { echo $avatar; } else { $avatar = file_get_contents('default-avatar.png', true); echo $avatar; }[PHP] pobierz, plaintext