For Insert i use this code: ITs works check database data insert. For Show image: its not works no error not show. i check other data show without image. Please help me
my god i think the idea in not good if you saved img in db you must use the like that <?php $data = 'iVBORw0KGgoAAAANSUhEUgAAABwAAAASCAMAAAB/2U7WAAAABl' . 'BMVEUAAAD///+l2Z/dAAAASUlEQVR4XqWQUQoAIAxC2/0vXZDr' . 'EX4IJTRkb7lobNUStXsB0jIXIAMSsQnWlsV+wULF4Avk9fLq2r' . '8a5HSE35Q3eO2XP1A1wQkZSgETvDtKdQAAAABJRU5ErkJggg=='; $data = base64_decode($data); $im = imagecreatefromstring($data); if ($im !== false) { header('Content-Type: image/png'); imagepng($im); } else { echo 'An error occurred.'; } ?> PHP:
i dont know how you stord the data in the mysql but i know you should use the imagecreatefromstring()