üstad sanırım kendımı ıfade edemedım.bu benım sağdakı son haberler bloğu sımdı bunun ıcınhaberlerde bı bolum acayım tamam ama hangı kodu değiştırmem gerek acaba?
<?
/*
+--------------------------------------------------------------------------
| News List 1.0 Block for MKPortal 1.0 09.09.2005
| by visiblesoul <Don K. Colburn>
| Copyright (c) 2005 visiblesoul.net
| http://www.visiblesoul.net
+--------------------------------------------------------------------------
| This is a very simple block.
| It displays only the news title and category with minimal formatting.
+--------------------------------------------------------------------------
*/
$cutoff = 65; //satirda kac karaktere kadar gorunsun
$limit = 18; //kac adet haber listelensin
if (!$limit) {
$limit = 10;
}
$content = "";
$link_user = $mklib_board->forum_link("profile");
$query = $DB->query( "SELECT id, titolo FROM mkp_news_sections ORDER BY `id` DESC");
while( $row = $DB->fetch_row($query) ) {
$idcat = $row['id'];
$categoria[$idcat]['titolo'] = $row['titolo'];
}
$query1 = $DB->query( "SELECT id, idcategoria, titolo FROM mkp_news WHERE validate = '1' ORDER BY `id` DESC LIMIT $limit");
while( $row = $DB->fetch_row($query1) ) {
$idcategoria = $row['idcategoria'];
$titolo = stripslashes($row['titolo']);
$sezione = $categoria[$idcategoria]['titolo'];
if (strlen($titolo) > $cutoff) {
$titolo = substr( $titolo,0,($cutoff - 3) ) . "...";
$titolo = preg_replace( '/&(#(\d+;?)?)?(\.\.\.)?$/', '...',$titolo);
}
$content .= "
<tr>
<td width=\"3%\" nowrap=\"nowrap\" style=\"padding-right: 1px;\"><img src=\"
http://www.egitimciyim.net/mkportal/templates/default/images/sonhaber.gif\" width=\"6\" height=\"6\" align=\"left\" alt=\"\" /></td>
<td width=\"80%\"><a style=\"font-weight: bold;\" href=\"index.php?ind=news&op=news_show_single&ide={$row['id']}\">$titolo[/url]</td>
</tr>
";
}
unset($row);
unset($idcat);
unset($categoria);
unset($query);
unset($query1);
unset($idcategoria);
unset($titolo);
unset($sezione);
?>