Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently I am trying to use html_entity_decode to display 2 images on the same page.

   $ent  = file_get_contents('./olympic.jpg');
   $ent1 = file_get_contents('./olympic1.jpg');
   $s  =  htmlspecialchars($ent1,ENT_COMPAT,'iso-8859-1');
   $s1 =  htmlspecialchars($ent,ENT_COMPAT,'iso-8859-1');

   $s2 = html_entity_decode($s, ENT_COMPAT,'iso-8859-1');
   $s3 = html_entity_decode($s1, ENT_COMPAT,'iso-8859-1');

   Header("Content-Type: image/jpeg");
   echo ($s2);
   echo ($s3);

I am now able to display $s2 but unable to display $s3. This is just a testing page, in the real system the image will be sent over from webservices in iso-8859-1 encoding. Any help would be appreciated.

share|improve this question
You might wanna check this question. – Vatev Aug 2 '12 at 6:15
thanks i got my answer :) – Steven Tang Ti Khoon Aug 2 '12 at 14:58

1 Answer

up vote 2 down vote accepted

This has nothing to do with html_entity_decode(). You can't display two images in a single HTTP response. You have to serve an HTML document (Content-Type: text/html) that contains two embedded images.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.