I have the following example text:
Hola bienvenido ah *tu sitio.com*
para continuar oprime *cualquier tecla*
What I need is to change the asterisks for the <b>
tag in php but it would be relatively, if you already opened a tag to close it, it should look like this:
Hola bienvenido ah <b>tu sitio.com</b>
para continuar oprime <b>cualquier tecla</b>
I have the following code for now, but I can not do it:
$partsBlod = explode('*',$value->txt_msn);
if (count($partsBlod)>1) {
$textNew = "";
for ($i=0; $i < count($partsBlod); $i++) {
if ($i == 0) {
$textNew .= $partsBlod[$i] . '<b>';
}else{
$textNew .= $partsBlod[$i] . '</b><b>';
}
}
$value->txt_msn = $textNew;