Neler yeni

Yeni mesajlar Yeni konular En çok mesaj En çok tepki En çok görüntülenen

elkor84

🏆Pro Tasarımcı🏆
Katılım
29 Ara 2007
Mesajlar
708
Tepkime puanı
17
bebek_guvenli_uyku_minderi.jpg
 

karaveri

🏅Acemi Tasarımcı🏅
Katılım
22 Tem 2008
Mesajlar
27
Tepkime puanı
0
>>*FERFORJE



- Bina Çıkış Kapısı



- Bahçe Çıkış Kapısı



- Balkon ve Pencere Korkulukları



- Bahçe Duvar Üstü Korkulukları

>>*ÇELİK KONSTRUKSİYON

>>*ÇATI KAPLAMA SİSTEMLERİ

>>*OTURMA BANKLARI

>>*ÇÖP KOVALARI

>>*KAMELYA SİSTEMLERİ

>>*ÇOCUK OYUN GRUPLARI


Web Tasarım Yapıyordum Menuleri Sıralayacaktım ki Yakaladınız :D
 

eylo

🏅Acemi Tasarımcı🏅
Katılım
21 Haz 2008
Mesajlar
51
Tepkime puanı
1
kalitede güveni bilmem ne dio aman çok matah bişi
 

C3ng0

👑Efsanevi Grafiker👑
Katılım
28 Ara 2007
Mesajlar
3,602
Tepkime puanı
62
<?php
#######################################################################################
## Title : Son mesajlarin bagimsiz göserilmesi
## Modifiye by SeYeMeK seyemek@seyemek.ru
#######################################################################################
## Açiklama : Recent Topics Block for Smartor's ezPortal Modifiyesi
## forum üzerine herhangi bir yük getirmez.
## Kaldirmak istediginizde sadece xyz.php ve xyz.tpl
## dosyalarini siliniz.
#######################################################################################
## Degistirilen dosyalar : yok
## Eklenen dosyalar : xyz.php
## xyz.tpl
#######################################################################################s
## Telif Hakki : GPL GNU
## Yani özgürce dagitabilir ve kullanabilirsiniz.
#######################################################################################s
define('IN_PHPBB', true);
//
// Dosyanini buundugu yere göre forum'un kurulu oldugu yer
$phpbb_root_path = './forum/';
//

include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
//
// Session baslangici
$userdata = session_pagestart($user_ip, PAGE_ALBUM);
init_userprefs($userdata);
// Session Sonu
//

//

// xyz.tpl templates dosyasini aktif et.
$template->set_filenames( array( 'body' => 'murat.tpl' ) );

//
// Son yazilan Mesajlar BASLANGICI
//
// Son mesaj ayarlari
$CFG['number_recent_topics'] = '10';
$CFG['exceptional_forums'] = '';

$sql = "SELECT * FROM ". FORUMS_TABLE . " ORDER BY forum_id";
if (!$result = $db->sql_query($sql))
{
message_die(GENERAL_ERROR, 'Could not query forums information', '', __LINE__, __FILE__, $sql);
}
$forum_data = array();
while( $row = $db->sql_fetchrow($result) )
{
$forum_data[] = $row;
}
$is_auth_ary = array();
$is_auth_ary = auth(AUTH_ALL, AUTH_LIST_ALL, $userdata, $forum_data);

if( $CFG['exceptional_forums'] == '' )
{
$except_forum_id = '\'start\'';
}
else
{
$except_forum_id = $CFG['exceptional_forums'];
}

for ($i = 0; $i < count($forum_data); $i++)
{
if ((!$is_auth_ary[$forum_data[$i]['forum_id']]['auth_view']))
{
if ($except_forum_id == '\'start\'')
{
$except_forum_id = $forum_data[$i]['forum_id'];
}
else
{
$except_forum_id .= ',' . $forum_data[$i]['forum_id'];
}
}
}

$sql = "SELECT t.topic_id, t.topic_title, t.topic_last_post_id, t.forum_id, p.post_id, p.poster_id, p.post_time, u.user_id, u.username FROM "
. TOPICS_TABLE . " AS t, " . POSTS_TABLE . " AS p, "
. USERS_TABLE . " AS u WHERE t.forum_id NOT IN (" . $except_forum_id . ")
AND t.topic_status <> 2
AND p.post_id = t.topic_last_post_id
AND p.poster_id = u.user_id
ORDER BY p.post_id
DESC LIMIT " . $CFG['number_recent_topics'];

if (!$result = $db->sql_query($sql))
{
message_die(GENERAL_ERROR, 'Could not query recent topics information', '', __LINE__, __FILE__, $sql);
}
$number_recent_topics = $db->sql_numrows($result);
$recent_topic_row = array();
while ($row = $db->sql_fetchrow($result))
{
$recent_topic_row[] = $row;
}
for ($i = 0; $i < $number_recent_topics; $i++)
{
$template->assign_block_vars('recent_topic_row', array(
'U_TITLE' => append_sid( $phpbb_root_path . "viewtopic.$phpEx?" . POST_POST_URL . '=' . $recent_topic_row[$i]['post_id']) . '#' .$recent_topic_row[$i]['post_id'],
'L_TITLE' => $recent_topic_row[$i]['topic_title'],
'T_TITLE' => $recent_topic_row[$i]['topic_title'],
'U_POSTER' => append_sid( $phpbb_root_path . "profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $recent_topic_row[$i]['user_id']),
'S_POSTER' => $recent_topic_row[$i]['username'],
'S_POSTTIME' => substr (create_date($board_config['default_dateformat'], $recent_topic_row[$i]['post_time'], $board_config['board_timezone']),0)
)
);
}
//
// Son yazilan Mesajlar BASLANGICI
//

//Açilan templateyi derle
$template->pparse('body');


?>


hönk! :D:D:D
 

Hepyek

👑Efsanevi Grafiker👑
Katılım
17 Eyl 2007
Mesajlar
3,069
Tepkime puanı
84
Türk fliirinde modern tav›r, Osmanl› Devletinin son döneminde görülür. Bunda siyasî geliflmelerin belirleyici bir etkisi vard›r. 1839’da “Tanzimat Ferman›”, 1856’da “Islâhat Ferman›” ilân edilmifl ve yöneten :bigsmile:
 

damla1

Kreatif Stratejist
👑Efsanevi Grafiker👑
Katılım
2 Ağu 2008
Mesajlar
5,055
Tepkime puanı
110
hoş geldin
gözteririm sana ben hakkı hukuku uyuz bu kalmış:p
 

Hepyek

👑Efsanevi Grafiker👑
Katılım
17 Eyl 2007
Mesajlar
3,069
Tepkime puanı
84
Y›llard›r dilimden düflürmedi€im iki dize var. Bir flairin iki dizesi; asl›nda birçok dize var da bu iki dizenin benim için hem anlam› baflka hem de fliirin bütünü bana çok yak›n. Asl›nda bu iki dize, bir ba
 

emuxa

🏅Acemi Tasarımcı🏅
Katılım
8 Mar 2008
Mesajlar
95
Tepkime puanı
0
aranan=request("webaranan")
aranan=Replace(aranan,"_","")
aranan=server.urlencode(aranan)
sira=request("sira")
post_to_url="https://www.google.com/wml?q="&aranan&"&start="&sira&"&hl=tr&num=5&ie=UTF-8"
Set smslustARA = Server.CreateObject("Msxml2.XMLHTTP")
smslustARA.open "GET",post_to_url, false
smslustARA.send
sonuc=smslustARA.responseText

if sira="" then
sira="0"
else
sira=sira
end if

bas=":<br/>"
son="Sonraki 5..."
yerbasi=instr(sonuc,bas)
yersonu=instr(sonuc,son)
sonuc=mid(sonuc,yerbasi,yersonu)
sonuc=Replace(sonuc,"Google 1-5:","")
sonuc=Replace(sonuc,"<br/>","<br><br><img src='files/buttonRight.gif' border='0' align='absmiddle' vspace='1' hspace='1'>")
sonuc=Replace(sonuc,"Sonraki 5...","")
sonuc=Replace(sonuc,"</card></wml>","")
sonuc=Replace(sonuc,"https://wmlproxy.google.com/wmltrans/h=tr/g=/q="&aranan&"/s="&sira&"/u=","https://")
sonuc=Replace(sonuc,"c=0","")
sonuc=Replace(sonuc,"@2F","/")
sonuc=Replace(sonuc,"<a","<a target=_blank class=menu")
sonuc=Replace(sonuc,"//","/")
sonuc=Replace(sonuc,"http:/","https://")
sonuc=Replace(sonuc,"@7E","~")
sonuc=Replace(sonuc,".htm/",".htm")
sonuc=Replace(sonuc,".html/",".html")
sonuc=Replace(sonuc,".asp/",".asp")
sonuc=Replace(sonuc,".php/",".php")
sonuc=Replace(sonuc,".pdf/",".pdf")
sonuc=Replace(sonuc,".mp3/",".mp3")
sonuc=Replace(sonuc,".exe/",".exe")
sonuc=Replace(sonuc,".doc/",".doc")
sonuc=Replace(sonuc,".xla/",".xla")
sonuc=Replace(sonuc,".xml/",".xml")
sonuc=Replace(sonuc,".cgi/",".cgi")
sonuc=Replace(sonuc,".pl/",".pl")
sonuc=Replace(sonuc,".chm/",".chm")
sonuc=Replace(sonuc,".mov/",".mov")
sonuc=Replace(sonuc,".avi/",".avi")
sonuc=Replace(sonuc,".mpg/",".mpg")
sonuc=Replace(sonuc,".mdb/",".mdb")
sonuc=Replace(sonuc,".rar/",".rar")
sonuc=Replace(sonuc,".arj/",".arj")
sonuc=Replace(sonuc,".zip/",".zip")
sonuc=Replace(sonuc,".xls/",".xls")
sonuc=Replace(sonuc,".bmp/",".bmp")
sonuc=Replace(sonuc,".gif/",".gif")
sonuc=Replace(sonuc,".jpg/",".jpg")
sonuc=Replace(sonuc,".vxd/",".vxd")
sonuc=Replace(sonuc,".dll/",".dll")
sonuc=Replace(sonuc,"@2D","-")
sonuc=Replace(sonuc,"@5F","_")
sonuc=Replace(sonuc,"@3F","?")
sonuc=Replace(sonuc,"@3D","=")
sonuc=Replace(sonuc,"@26","&")
sonuc=Replace(sonuc,"@40","@")

For sayi=0 to 9
sonuc=Replace(sonuc,""&sayi&"/",""&sayi&"")
next

set smslustARA=Nothing

if sira="" Then
nextsira=5
presira=""
else
nextsira=sira+5
presira=sira-5
if sira=0 Then
presira=""
else
presira=presira
if presira=0 Then
presira=""
end if
end if
end if


if sonuc="" Then
sonucYaz="<br>Aranan kelime bulunamadi<BR>"
else
sonuc=Replace(sonuc,"<a target=_blank class=menu href=""/wml?q="&aranan&"&num=5&hl=tr&ie=UTF-8&start="&nextsira&"""></a>","<br>")
sonuc=Replace(sonuc,"<br><br><img src='files/buttonRight.gif' border='0' align='absmiddle' vspace='1' hspace='1'><br>","<br>")
sonucYaz=sonuc
end if

oncekibes="<a href="""& Request.ServerVariables("SCRIPT_NAME") &"?page=webara&show=ok&webaranan="&aranan&"&sira="&presira&""" class=""menu"" title=""Onceki bes"">Onceki 5</a>"
sonrakibes="<a href="""& Request.ServerVariables("SCRIPT_NAME") &"?page=webara&show=ok&webaranan="&aranan&"&sira="&nextsira&""" class=""menu"" title=""Sonraki bes"">Sonraki 5</a>"

%>

<center>
<table class="bgColorLight" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="files/miscCornerTopLeft.gif" height="8" width="8"></td>
<td></td>
<td><img src="files/miscCornerTopRight.gif" height="8" width="8"></td>
</tr>
<tr>
<td></td>
<td width="100%">
<span style="position:relative; top:-4px;" class="homePageFeatures"><b><font color="#ff3300">::</font>
smsLusT Internette arama sonucu</b></span>
</td>
<td></td>
</tr>
<tr>
<td><img src="files/miscCornerBottomLeft.gif" height="8" width="8"></td>
<td></td>
<td><img src="files/miscCornerBottomRight.gif" height="8" width="8"></td>
</tr>
</table>
<img src="files/miscSpacer.gif" height="10">

<table class="bgColorLight" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="files/miscCornerTopLeft.gif" height="8" width="8"></td>
<td></td>
<td><img src="files/miscCornerTopRight.gif" height="8" width="8"></td>
</tr>
<tr>
<td></td>
<td width="100%">
<span style="position:relative; top:-4px;" class="homePageFeatures"><b><font color="#ff3300">Bulunan linkler<%=sonucYaz%></span>
</td>
<td></td>
</tr>
<tr>
<td><img src="files/miscCornerBottomLeft.gif" height="8" width="8"></td>
<td></td>
<td><img src="files/miscCornerBottomRight.gif" height="8" width="8"></td>
</tr>
</table>

<img src="files/miscSpacer.gif" height="10">

<table class="bgColorLight" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="files/miscCornerTopLeft.gif" height="8" width="8"></td>
<td colspan="2"></td>
<td><img src="files/miscCornerTopRight.gif" height="8" width="8"></td>
</tr>
<tr>
<td></td>
<td width="50%">
<span style="position:relative; top:-4px;" class="homePageFeatures"><b><p align="center"><%=oncekibes%></p></b></span>
</td>
<td width="50%">
<span style="position:relative; top:-4px;" class="homePageFeatures"><b><p align="center"><%=sonrakibes%></p></b></span>
</td>
<td></td>
</tr>
<tr>
<td><img src="files/miscCornerBottomLeft.gif" height="8" width="8"></td>
<td colspan="2"></td>
<td><img src="files/miscCornerBottomRight.gif" height="8" width="8"></td
Benimki biraz uzun oldu :D dreamweaver den host a taşıyordum :D
 

scarlett25

⭐Deneyimli Tasarımcı⭐
Katılım
5 Ağu 2008
Mesajlar
215
Tepkime puanı
5
Ya evet

Ama kısa diye kabul etmedi cevabımı :)
 
Üst