I get string from database dynamically within my website, that contains fully HTML code,I need to show this string html to new browser window, suggest me how to do this.
<html>
..............
..............
<a href="#">link</a> (when click link it render value from db that contains whole html page, I am already in html page, how to show this extra html page)
..............
..............
</html>
note: I know echo command used to display html element to browser but my case is different. for example already I have body tag and write css, js, jquery for body tag, when I render html string from db, then used echo, it will add one more body tag to my website, so its get conflict with old one.