Can I use html tags within php variable. For example I'm doing a loop where I have a parent item that I want to take <strong>
and the child items I just add -
, except that if I do this at the time of setting the parent item $varPai = "<strong>{$varValue}"</strong>
variable, it does not render the item with strong, is it possible to do this within php?
This is my foreach that is riding, parent > children
foreach($listaLocalidade as $p_id => $p_nome){
$cidades = $this->Localidade->find('list',array('conditions'=>"Localidade.Localidade_id ={$p_id}", 'Localidade.programas is not null'));
$opcoesPaisCidade[$p_id] = "<strong>{$p_nome}</strong>"; // aqui é o pai, onde eu teria que deixar strong
foreach($cidades as $c_id => $c_nome){
$opcoesPaisCidade[$c_id] = ' - '.$c_nome;
//die(print_r($opcoesPaisCidade));
}
}
And I'm riding like this:
<select id="combobox" name="data[orcamento][localidade_id]">
<option value="">Select one...</option>
<?php
foreach($opcoesPaisCidade as $p_id => $p_nome){
?>
<option value="<?=$p_id?>"><?=$p_nome?></option>
<?}?>
</select>