for echo $text, i see in the browser “line1 line2”
however, $text is to insert in a <meta name=“description” content=“‘.$text.’” />
and when i check the view source of the page i see…
<meta name=“description” content=“line1
line2” />
instead of
<meta name=“description” content=“line1 line2” />
i stripped all tags from strip_tags…
how can i remove this line to have the code without the break?..