Not sure what to do...

I have this code and I’ve tried to figure out why it’s not working and any help here would be greatly appreciated…

[php]if($liststyle == ‘vertical’){
$inlinestyle = ‘style="display:block;clear:both;margin:10px;’;
}
else{
$inlinestyle = ‘style=“display:block;float:left;clear:none;margin:10px;text-align:center;height=100px;width=100px;”’;
}

echo ‘

’;
echo ‘
’;
echo ‘$vtitle’;
foreach ($videos as $video){
$i++;
echo ‘<div $inlinestyle>’;
$link = ‘<a href="’. (str_replace("&feature=youtube_gdata","", $video[‘link’])).’" onclick=“popup(‘popUpDiv’)”>"’.$video[‘title’].’::DCC Video Library" ‘;
echo ‘
’.$link.$video[‘img’].’
’;
}[/php]
Sponsor our Newsletter | Privacy Policy | Terms of Service