Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to pass html (image tag) inside an array_push:

array_push($result, array("id"=>$value, "label"=>'<img src="images/image.jpg" alt="">'.$value, "value"=>strip_tags($key)));

The problem is that the html is rendered in the page like this:

&lt;img src="images/image.jpg" alt=""&gt;

so I get just text:

<img src="images/image.jpg" alt=""> 

instead of an image.

I process the array $result with json_encode:

echo json_encode($result);
share|improve this question
how is the result processed before rendering? – Alp Mar 15 '12 at 20:18
1  
Could you tell us what you're doing to render the HTML? – rjz Mar 15 '12 at 20:18
@Alp - I echo the $result through an array_to_json function: echo array_to_json($result); – Y Kal Mar 15 '12 at 20:25
That's not a native PHP function, please show us its code. – Alp Mar 15 '12 at 20:27
You HTML encoded it somewhere. Make a testcase please. You don't seem to have narrowed down the issue at all. – Lightness Races in Orbit Mar 15 '12 at 20:35
show 2 more comments

2 Answers

You are probably using something like htmlentities() or addslashes() in your render function. Without, it should work.

share|improve this answer

Apparently, array_push() is converting HTML entities similar to the htmlentities() function. I've never looked into that behavior before, but a simple solution would be when you pop the HTML data from you array, process it with html_entity_decode() before output.

share|improve this answer
-1: No, array_push does not do that. And you should fix the problem, not mask it after-the-fact. – Lightness Races in Orbit Mar 15 '12 at 20:36

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.