vanroojdotcom Posted November 15, 2007 Share Posted November 15, 2007 Hi there – wondered if anybody could help me with this would be really grateful for a quick reply! I need to pull off a load of text from a database (with paragraphs and line breaks etc) but the company I have to send the data to has very specific requirements. The character < and the character > cannot be used, but the br and p can. So <br> and <p> would have to be <br> <p> Any ideas? Thanks Vanrooj Link to comment https://forums.phpfreaks.com/topic/77454-convert-some-html-characters-but-keep-others/ Share on other sites More sharing options...
axiom82 Posted November 15, 2007 Share Posted November 15, 2007 $paragraph = str_replace ('>', '>', $paragraph); $paragraph = str_replace ('<', '<', $paragraph); Link to comment https://forums.phpfreaks.com/topic/77454-convert-some-html-characters-but-keep-others/#findComment-392096 Share on other sites More sharing options...
vanroojdotcom Posted November 15, 2007 Author Share Posted November 15, 2007 Thanks for the reply. Sorry to appear a little slow here but where would that fit into my code? DESCRIPTION="<?php echo ($row_rsttheJobResults['description']); ?>" This is the line that grabs the description from the database. Thanks Vanrooj Link to comment https://forums.phpfreaks.com/topic/77454-convert-some-html-characters-but-keep-others/#findComment-392115 Share on other sites More sharing options...
vanroojdotcom Posted November 15, 2007 Author Share Posted November 15, 2007 The reason I ask is that I feel I need to do two things to this code 1) convert the code to create the /n into a <p> (I know that nl2br() converts to br) 2) then convert the < and the > into t<br> and <p> Thanks Vanrooj Link to comment https://forums.phpfreaks.com/topic/77454-convert-some-html-characters-but-keep-others/#findComment-392120 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.