Rifts Posted December 1, 2010 Share Posted December 1, 2010 in my datebase I have this <iframe src="https://www.xxxxxx.com/agent.asp?id=xxxxx style="width: 545px; height: 750px;" frameborder="1"></iframe> obviously when I echo it it makes the iframe how can I get it to echo out literally what it is with the < > and all? thanks figured it out I changed the < to < in my db Link to comment https://forums.phpfreaks.com/topic/220408-displaying-literal-code/ Share on other sites More sharing options...
Psycho Posted December 1, 2010 Share Posted December 1, 2010 figured it out I changed the < to < in my db Why would you do that? I suggest always keeping your data in it's "raw" state. If you ever need to use that data as HTML code you will have a harder time converting that code back. A better solution, IMHO, would be to simply use htmlspecialchars() or htmlentities() to convert the text on-the-fly to replace the necessary characters. Link to comment https://forums.phpfreaks.com/topic/220408-displaying-literal-code/#findComment-1142022 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.