Hi Everyone, this is really simple I'm sure but I can't figure out how to open the bold tag for this snipet of code.
if ($cur_country != $code['country']) {
$cur_country = $code['country'];
$cur_region = '';
if ($wines[$code['menu_type']]!='') { $wines[$code['wine_type']].=' <br>'; }
$wines[$code['wine_type']] .= strtoupper ($code['country']).'</b><br>';
}
I'm printing out text from a database to be displayer in flash. I've tried
if ($cur_country != $code['country']) {
$cur_country = $code['country'];
$cur_region = '';
if ($wines[$code['menu_type']]!='') { $wines[$code['wine_type']].=' <br>'; }
$wines[$code['wine_type']] .= strtoupper '<b>' ($code['country']).'</b><br>';
}
and
if ($cur_country != $code['country']) {
$cur_country = $code['country'];
$cur_region = '';
if ($wines[$code['menu_type']]!='') { $wines[$code['wine_type']].=' <br>'; }
$wines[$code['wine_type']] .= strtoupper ( '<b>'$code['country']).'</b><br>';
}
nothing seems to work. I'm lower then a php newbie so the minute the scripts get complex, I get lost.
Thanks in advance.
I figured it out.
if ($cur_country != $code['country']) {
$cur_country = $code['country'];
$cur_region = '';
if ($wines[$code['menu_type']]!='') { $wines[$code['wine_type']].=' <br>'; }
$wines[$code['wine_type']] .= '<b>'. strtoupper ($code['country']).'</b><br>';
}