How can you add this line of code in a
<a href='/<?=$value["content_url"];?>' class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="true"><?=$value["content_title"];?><span class="caret"></span></a>
so eventually you get something like this:
if (1 == 1) {
echo "<a href='/<?=$value["content_url"];?>'
class="dropdown-toggle" data-toggle="dropdown" role="button"
aria-haspopup="true" aria-expanded="true"> <?=$value["content_title"];?>
<span class="caret"></span></a>";
} else {
echo "Nothing to see!"
}
Because you have multiple punctuations it will end the echo to quick..