| Author | Message |
teamkral
88 posts |
#19423 2008-03-19 13:06 GMT |
|
arkadaslar son forum konuları diye bolumde aradaki cizgiler beyaz rekn cok bozuo orayı bosmaması icin nsl yapabilirzi site : teamkral.org |
|
|
www.TeamKral.org | İnternette Yaşayan Esrarengiz Efsane (:
|
|
The_PcDelisi
239 posts |
#19425 2008-03-19 13:16 GMT |
|
plugins/latespost/latespost.php kodlarını yaz
|
|
|
TeknoPaylasim.NET Biraz özenti oldu ama idare edin :)
5 Gün Deneme Hosting Veriyoruz Memnun kalırsanız Alıyorsunuz( Linux Windows ) Morelim Bozuk :( Pr 3 den/1e Düştü Lanet olsun bu içimdeki insan sevgisi |
|
teamkral
88 posts |
#19521 2008-03-19 18:43 GMT |
|
Hepsi Bunlar ya ben www.tekadresim.net deki gibi beyaz cizgi yerine siyah fln olsun ? Code: <?PHP
/* ==================== Land Down Under - Website engine Copyright Kaan http://www.ntka.org [BEGIN_SED] File=plugins/latestposts/latestposts.php Version=2 Updated= Type=Plugin Author=| Kaan | www.ntka.org a.q bunu yanlýþ yazanýn Ýpneler adam gibi yazýn yazýyorsanýz. Description=Ana Sayfada Son Forum Konulari [END_SED] [BEGIN_SED_EXTPLUGIN] Code=latestposts Part=main File=latestposts Hooks=index.tags Tags=index.tpl:{PLUGIN_latestposts} Minlevel=0 Order=10 [END_SED_EXTPLUGIN] ==================== */ if ( !defined('SED_CODE') ) { die("Hacking attempt."); } $plimit = "12"; // define number of rows you want to see... $sql = sed_sql_query("SELECT t.ft_id, t.ft_sectionid, t.ft_title, t.ft_updated, t.ft_postcount, t.ft_viewcount, t.ft_lastposterid, t.ft_lastpostername, s.fs_id, s.fs_title, s.fs_category FROM $db_forum_topics t,$db_forum_sections s WHERE t.ft_sectionid=s.fs_id AND t.ft_movedto=0 AND t.ft_mode=0 ORDER by t.ft_updated DESC LIMIT $plimit"); $latestposts = "<table border='1' width='100%' cellspacing='0' bordercolor='000000' cellpadding='0' align='center'>"; $latestposts .= "<tr><td>Konu</td><td>Mesajlar</td><td>Okunma</td><td>Son Gönderen</td><td>Tarih</td></tr>"; $ii=0; while ($row = sed_sql_fetcharray($sql)){ if (sed_auth('forums', $row['fs_id'], 'R')){ $ii++; $img = ($usr['id']>0 && $row['ft_updated']>$usr['lastvisit']) ? "<a href=\"forums.php?m=posts&q=".$row['ft_id']."&n=unread#unread\"><img src=\"skins/$skin/img/system/arrow-unread.gif\" alt=\"\" /></a>" : "<a href=\"forums.php?m=posts&q=".$row['ft_id']."\"><img src=\"skins/$skin/img/system/arrow-follow.gif\" alt=\"\" /></a> "; $latestposts .= "<tr><td> "; $latestposts .= $img." <a href=\"forums.php?m=posts&q=".$row['ft_id']."\">".sed_cc(sed_cutstring(stripslashes($row['ft_title']),38))."</a></td>"; $latestposts .="<td> (" .$row["ft_postcount"]. ") </td>"; $latestposts .="<td> (" .$row["ft_viewcount"]. ")</td>"; $latestposts .= "<td> <a href='users.php?m=details&id=".$row["ft_lastposterid"]."'>".$row["ft_lastpostername"]."</a></td>";$latestposts .= "<td> ".date($cfg['formatmonthdayhourmin'], $row['ft_updated'] + $usr['timezone'] * 3600)."</td></tr>"; } } if($ii==0){ $latestposts .= "<tr><td colspan=\"5\"><center><font color='red'>Son Forum Konularýný Görmek için Giriþ Yapýnýz</font></center></td></tr>"; } $latestposts .= "</table>"; $t-> assign(array( "PLUGIN_latestposts" => $latestposts, )); ?> |
|
|
www.TeamKral.org | İnternette Yaşayan Esrarengiz Efsane (:
|
|
WebCoder
139 posts |
#19523 2008-03-19 19:18 GMT |
|
Verdiğin kodları bunlarla değiş istediğin şey olucaktır
Code: <?PHP
/* ==================== Land Down Under - Website engine Copyright Kaan http://www.ntka.org [BEGIN_SED] File=plugins/latestposts/latestposts.php Version=2 Updated= Type=Plugin Author=| Kaan | www.ntka.org a.q bunu yanlýþ yazanýn Ýpneler adam gibi yazýn yazýyorsanýz. Description=Ana Sayfada Son Forum Konulari [END_SED] [BEGIN_SED_EXTPLUGIN] Code=latestposts Part=main File=latestposts Hooks=index.tags Tags=index.tpl:{PLUGIN_latestposts} Minlevel=0 Order=10 [END_SED_EXTPLUGIN] ==================== */ if ( !defined('SED_CODE') ) { die("Hacking attempt."); } $plimit = "12"; // define number of rows you want to see... $sql = sed_sql_query("SELECT t.ft_id, t.ft_sectionid, t.ft_title, t.ft_updated, t.ft_postcount, t.ft_viewcount, t.ft_lastposterid, t.ft_lastpostername, s.fs_id, s.fs_title, s.fs_category FROM $db_forum_topics t,$db_forum_sections s WHERE t.ft_sectionid=s.fs_id AND t.ft_movedto=0 AND t.ft_mode=0 ORDER by t.ft_updated DESC LIMIT $plimit"); $latestposts = "<table border='0' width='100%' cellspacing='0' bordercolor='000000' cellpadding='0' align='center'>"; $latestposts .= "<tr><td>Konu</td><td>Mesajlar</td><td>Okunma</td><td>Son Gönderen</td><td>Tarih</td></tr>"; $ii=0; while ($row = sed_sql_fetcharray($sql)){ if (sed_auth('forums', $row['fs_id'], 'R')){ $ii++; $img = ($usr['id']>0 && $row['ft_updated']>$usr['lastvisit']) ? "<a href=\"forums.php?m=posts&q=".$row['ft_id']."&n=unread#unread\"><img src=\"skins/$skin/img/system/arrow-unread.gif\" alt=\"\" /></a>" : "<a href=\"forums.php?m=posts&q=".$row['ft_id']."\"><img src=\"skins/$skin/img/system/arrow-follow.gif\" alt=\"\" /></a> "; $latestposts .= "<tr><td> "; $latestposts .= $img." <a href=\"forums.php?m=posts&q=".$row['ft_id']."\">".sed_cc(sed_cutstring(stripslashes($row['ft_title']),38))."</a></td>"; $latestposts .="<td> (" .$row["ft_postcount"]. ") </td>"; $latestposts .="<td> (" .$row["ft_viewcount"]. ")</td>"; $latestposts .= "<td> <a href='users.php?m=details&id=".$row["ft_lastposterid"]."'>".$row["ft_lastpostername"]."</a></td>";$latestposts .= "<td> ".date($cfg['formatmonthdayhourmin'], $row['ft_updated'] + $usr['timezone'] * 3600)."</td></tr>"; } } if($ii==0){ $latestposts .= "<tr><td colspan=\"5\"><center><font color='red'>Son Forum Konularýný Görmek için Giriþ Yapýnýz</font></center></td></tr>"; } $latestposts .= "</table>"; $t-> assign(array( "PLUGIN_latestposts" => $latestposts, )); ?> |
|
|
Sakarya Tasar?m - Sakarya Dizayn | Tasarimda Öncü Marka
Yeni Seditio Pagerank sistemi >> http://www.sakarya-dizayn.net/pagerank/ |
|
teamkral
88 posts |
#19606 2008-03-20 10:46 GMT |
|
eyw oldu
|
|
|
www.TeamKral.org | İnternette Yaşayan Esrarengiz Efsane (:
|
> 1 <
Benzer konular (Similar topics) #BETA
| Konular | Mesajlar | Son Yazar | Güncelleme |
| RedTurk Teması Yardım | 3 | teamkral | 206 Gün |
| RedTurk Teması 1 Bug daha Yardım Lütfen Emremix :( | 7 | teamkral | 229 Gün |
| RedTurk Teması Sorun Lütfen Acil Yardım :@ | 15 | emremix | 227 Gün |
| RedTurk Önemli Bir Bug Daha :S Lütfen Yardım | 2 | Aragorn-pc | 188 Gün |
| Blaster07 teması Yardım | 2 | serkan | 363 Gün |




