i have a textarea value which its value derived from a field(nl2br)

how to strip off "< br/>", so that when i want to edit this field, the "< br />" will not be appeared?

//$data["Content"] is the field that has <br/> tags inside
$content = $data["Content"];

//when want to edit, want to strip the <br/> tag
<td><textarea name="content" rows="10" style="width:300px;"><?=$content?></textarea></td>

i know it should be using strip_tags() function but not sure the real way to do it

any help would be appreciated

link|improve this question

75% accept rate
1  
i have found the way finally. just use strip_tags($content) and it should work fine. – user723360 May 29 '11 at 12:11
use strip_tags() if you wanna remove every html element from your variable, if you wanna just remove the <br/> use a function like str_replace(). if you are editing for example blog posts you better add a javascript editor in your interface, it'll make your like much easier – afarazit May 29 '11 at 12:15
feedback

2 Answers

up vote 4 down vote accepted

If you wanna use strip_tags, then it would just be:

$content = strip_tags($data["Content"]);
link|improve this answer
feedback

i would be using str_replace the following will replace <br/> with newline

$content = str_replace('<br/>','\n',$data['Content']);

or if you don't want the newline

$content = str_replace('<br/>','',$data['Content']);

edit an example

$my_br = 'hello<br/> world';
$content = str_replace('<br/>','',$my_br);

echo $content;

Output: hello world
link|improve this answer
1  
That won't remove <br /> or <br> – Niklas May 29 '11 at 12:16
@Niklas but it'll remove <br/> and not the rest of the html element. he only requested <br/> – afarazit May 29 '11 at 12:18
yea this won't replace the <br/> in fact.. so i think i will stick with the strip_tags() – user723360 May 29 '11 at 12:19
@user723360 of course it does, check my example, keep in mind that this only removes <br/> not <br /> or <br>. If you like to remove all and only the occurrences of <br> you must run str_replace for all of the above. – afarazit May 29 '11 at 12:22
@atno i not sure why.. perhaps the nl2br problem as the value get from database. i have try this $content = str_replace('<br/>','\n',$data['Content']); but the <br/> tags still appear in the textarea. – user723360 May 29 '11 at 12:25
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.