<div class="bottom-left-text-box"><p style="color:#F0F"><?=$oyun[$menu_isim_lower]?> <?=BENZEROYUNLAR?></p>
<?
$tm = explode(' ', $oyun[$menu_isim_lower]);
if ($lang == 'TR' or $lang == 'EN' or $lang == 'DE' or $lang == 'ES')
{
if ($tm[0] and strlen($tm[0])>1) $sel = "LIKE '%".$tm[0]."%' ";
if ($tm[1] and strlen($tm[1])>1) $sel .= " OR `".$menu_isim_lower."` LIKE '%".$tm[1]."%' ";
if ($tm[2] and strlen($tm[2])>1) $sel .= " OR `".$menu_isim_lower."` LIKE '%".$tm[2]."%' ";
$sql = "SELECT * FROM `oyun` WHERE `".$menu_isim_lower."` ".$sel." LIMIT 15 ";
}
else
{
if ($tm[0] and strlen($tm[0])>1) $sel = "LIKE '%".$tm[0]."%' ";
if ($tm[1] and strlen($tm[1])>1) $sel .= " OR oyun_".strtolower($lang).".".$menu_isim_lower." LIKE '%".$tm[1]."%' ";
if ($tm[2] and strlen($tm[2])>1) $sel .= " OR oyun_".strtolower($lang).".".$menu_isim_lower." LIKE '%".$tm[2]."%' ";
$sql = "SELECT * FROM oyun, oyun_".strtolower($lang)." WHERE (oyun_".strtolower($lang).".".$menu_isim_lower." ".$sel.") and oyun.id = oyun_".strtolower($lang).".id LIMIT 15 ";
}

$i = 0;
$style = 'style="margin-right:0px;"';

$a = mysql_query($sql);
while ($v = mysql_fetch_array($a))
{
?>
<a href="<?=FetchURL($v[$menu_isim_lower])?>.htm" title="<?=$v[$menu_isim_lower]?>"><?=$v[$menu_isim_lower]?></a>
|

<? }?>
</div>