Php html yorumlama kapatılması

0 Cevap php

Ben bir php dizide saklanan bazı html değerini alma ile ilgili bir sorun var:

$data = array("Name"=>'<div style="color:red"></div>');
while(list($key,$val) = each($data)){
  print_r($key." => ".$val) ;
}

Sorun (html etiketleri içine koymak) komut verir ki:

Name =>
Foo Bar

So, the div (so the html) is interpretated. What I want to display is the value, not its interpretation. So, the result that I want is:

Name => <div style="color:red">Foo Bar</div>

Bunu yapmak için bir yolu var mı?

Çok teşekkür ederim

Saygılar.

0 Cevap