Hey, i have this data that is stored in a my sql ddatabase, i am retrieving it through ppo / mysql <p><span style="color: #0000ff"><span>hello</span></span></p> fairly simple, i know.. how do i get it to actually display in html what it says, like if i echo that string or whatever it just says hello in black and white, where if i were to manually enter that code into a document it would be in blue.. hellllp i know its simple but...
hi In order to echo it Store this in DB <p><span style=\"color: #0000ff\"><span>hello</span></span></p> Regards Alex
$str = '<p><span style=\"color: #0000ff\"><span>hello</span></span></p>'; eval("\$str = \"$str\";"); echo $str; PHP: