$pageName = "news.php";
?>
include "config.php";
include "conn.php";
include "functions.php";
?>
Globalturk Capital
$search_url = clearStrSql_site(getParamUrl('searchKey', 'POST', ""));
$pageTitle = "HABERLER";
if ($search_url!=""){
$sqlAdded = " and title like '%$search_url%' ";
$pageTitle = "ARAMA SONUÇLARI";
}
?>
echo $pageTitle; ?>
$sql = "select id, title, month, year, url_to_go, seo_url from news where language = '$lng' and status = 1 $sqlAdded order by year desc, month desc, home_order_num asc";
$result = mysql_query ($sql, $connection);
$i=0;
while ($row = mysql_fetch_assoc($result)){
$i++;
$id = $row["id"];
$title = $row["title"];
$month = $row["month"];
$year = $row["year"];
$url_to_go = $row["url_to_go"];
$seo_url = $row["seo_url"];
?>
-
if ($url_to_go!=""){
?>
echo $title; ?>
}
else{
?>
echo $title; ?>
}
?>
echo $monthArr[$month-1]." ".$year; ?>
if ($url_to_go!=""){
?>
}
else{
?>
}
?>
}
?>
if ($i==0){
?>
-
Kayıt bulunamadı.
}
?>