显示数据库中的图像

I have a problem, how to display the image and the url stored in the destination database.
This my format code :

<a href="<?php echo get_settings('home'); ?>"  style="border:0;">
<img src="<?php echo get_settings('home');?>/banner/728x90.JPG" width="728" height="90"/>
</a>

This code is stored in the database

&lt;a href=\&quot;&lt;?php echo get_settings(\'home\'); ?&gt;\&quot; 
style=\&quot;border:0;\&quot;&gt;
    &lt;img src=\&quot;&lt;?php echo get_bloginfo(\'template_directory\');?&gt;/banner/728x90.JPG\&quot;
width=\&quot;728\&quot; height=\&quot;90\&quot;/&gt;
    &lt;/a&gt;

I called using:

stripslashes(get_option("bh"));

the results

<a href="<?php echo get_settings('home'); ?>"  style="border:0;">
    <img src="<?php echo get_bloginfo('template_directory');?>/banner/728x90.JPG" width="728" height="90"/>
    </a>

$bh = html_entity_decode(get_option("bh"));

the results

\" style=\"border:0;\"> /banner/728x90.JPG\" width=\"728\"
height=\"90\"/>

of all that I do still could not bring the image together with the url.