Normalde ki mansetimde bu sekilde
<!-- manşet haber başlangıç -->
<div class="headline_top" id="headline_top">
<div class="viewport">
<ul class="overview c_ul">
<?
$sql = "select * from haberler where tip='0' and durum='0' order by id desc LIMIT 15";
$manse = mysql_query($sql);
while($manset = mysql_fetch_array($manse)){
if($GOLDTRNETseo==0){
echo'<li><a href="haber.php?id='.$manset["id"].'"><img src="resim/h_buyuk/'.$manset["resim"].'" alt="'.$manset["baslik"].'" width="580" height="275" /></a>
<div style="float:left; background-color:#000; width:100%; height:50px; margin-top:-50px; opacity:0.4; filter:alpha(opacity=40);"> '.$manset["baslik"].'</div>
</li>';
}else{
echo'<li><a href="haber-'.$manset["id"].'-'.tr($manset["baslik"]).'.html"><img src="resim/h_buyuk/'.$manset["resim"].'" alt="'.$manset["baslik"].'" width="580" height="275" /></a>
<div style="float:left; background-color:#000; width:100%; height:50px; margin-top:-50px; opacity:0.8; filter:alpha(opacity=80);"> '.$manset["baslik"].'</div>
</li>';
}
}
?>
</ul>
</div>
<ul class="pager c_ul">
<?
$sql = "select * from haberler where tip='0' and durum='0' order by id desc LIMIT 15";
$manse = mysql_query($sql);
$mnst = 0;
$mnsts = 1;
while($manset = mysql_fetch_array($manse)){
if($GOLDTRNETseo==0){
echo'<li><a class="pagenum" rel="'.$mnst++.'" href="haber.php?id='.$manset["id"].'">'.$mnsts++.'</a></li>';
}else{
echo'<li><a class="pagenum" rel="'.$mnst++.'" href="haber-'.$manset["id"].'-'.tr($manset["baslik"]).'.html">'.$mnsts++.'</a></li>';
}
}
?>
</ul>