Seditio ve Ldu hakkında sınırsız arama yapın
 
 
> 1 <

Etiketler: menü hazırladım anasayfaya koyamıyorum

Author Message

RoCaLL

Members


Online status

30 posts
http://www.hithack.org
Pagerank: 0

Location: Turkey Erzincan
Occupation:
Age: 20

#6023   2007-08-20 20:23 GMT      

arkadaşlar şimdi vereceiğim kodlarda menü hazırladım biliyorum ki seditio ya yakışçak bir menü basit sade ama güzel bence ben bunu yapamadım bi yardım edermisiniz front pag yaprığım hali bu buyrun ben bunu header.trpl ye yerleştiriom anasayfa forum gibi asıl başlık lar görünüyor ama ana sayfaya tıkalyına alata doğru dosyalar bide dökümnala vs açılması gerek buyrun bakın

Code:
<html>

<head>
<style>
<!--
#foldheader{cursor:hand ; font-weight:bold ;
list-style-image:url('fold.gif')}
#foldinglist{list-style-image:url('list.gif')}
//-->
</style>
<script language="JavaScript1.2">
<!--
/**
*  Based on Folding Menu Tree
*  Dynamic Drive (www.dynamicdrive.com)
*  For full source code, installation instructions,
*  100's more DHTML scripts, and Terms Of
*  Use, visit dynamicdrive.com
*
*  Updated to support arbitrarily nested lists
*  by Mark Quinn (mark@robocast.com) November 2nd 1998
*/

var head="display:''"
img1=new Image()
img1.src="fold.gif"
img2=new Image()
img2.src="open.gif"

function change(){
   if(!document.all)
      return
   if (event.srcElement.id=="foldheader") {
      var srcIndex = event.srcElement.sourceIndex
      var nested = document.all[srcIndex+1]
      if (nested.style.display=="none") {
         nested.style.display=''
         event.srcElement.style.listStyleImage="url(open.gif)"
      }
      else {
         nested.style.display="none"
         event.srcElement.style.listStyleImage="url(fold.gif)"
      }
   }
}

document.onclick=change

//-->
</script>
</head>

<body>
<ul>
   <li id="foldheader">Anasayfa</li>
   <ul id="foldinglist" style="display:none" style=&{head};>
      <li><a href="http://hithack.org/list.php?c=files">Dosyalar</a></li>
      <li><a href="http://hithack.org/list.php?c=articles">Dökümanlar</a></li>
   </ul>

<li id="foldheader">Forum</li>
   <ul id="foldinglist" style="display:none" style=&{head};>
      <li><a href="http://www.gamespot.com">Anasayfa</a></li>
      <li><strong><a href="http://www.hithack.org/forums.php#">Ü</a><a onclick="return toggleblock('blk_pub')" href="#">ye
      Problemleri</a></strong></li>
      <li><strong>
      <a onclick="return toggleblock('blk_pub_805')" href="http://www.hithack.org/forums.php">VuRGuN
      Tim</a></strong></li>
   <li><strong>
   <a onclick="return toggleblock('blk_pub_892')" href="http://www.hithack.org/forums.php">Hacking
   Area</a></strong></li>
   <li><strong>
   <a onclick="return toggleblock('blk_pub_582')" href="http://www.hithack.org/forums.php">Güvenlik
   Açıkları</a></strong></li>
   <li><strong>
   <a onclick="return toggleblock('blk_pub_580')" href="http://www.hithack.org/forums.php">Web
   Master</a></strong></li>
      <li><strong>
      <a onclick="return toggleblock('blk_pub_797')" href="http://www.hithack.org/forums.php">Programlama</a></strong></li>
         <li><a href="http://www.hithack.org/forums.php">HiT GrouP</a></li>
   </ul>

   <li id="foldheader">Zone<ul id="foldinglist" style="display:none" style=&{head};>
      <li><a href="http://zone.hithack.org">Anasayfa</a></li>
      <li><a href="http://zone.hithack.org/kayit/">Deface Kaydı</a></li>
      <li><a href="http://zone.hithack.org/coklukayit/">Çoklu Deface</a></li>
    <li><a href="http://zone.hithack.org/onhold">Onhold</a></li>
     <li><b><a href="http://zone.hithack.org/special_deface/">
     <font color="#ff0000">Special Deface</font></a></b></li>
      <li><b><a href="http://zone.hithack.org/arama/"><font color="#ff0000">
      Arama</font></a></b></li>
         <li><b><a href="http://zone.hithack.org/arsiv/"><font color="#ff0000">
         Deface Arşivi</font></a></b></li>
            <li><b><a href="http://zone.hithack.org/top50/">
            <font color="#ff0000">Top 50 </font></a></b></li>
   </ul>
   
   <li id="foldheader">Upload<ul id="foldinglist" style="display:none" style=&{head};>
      <li><a href="http://upload.hithack.org">Anasayfa</a>
<li><a href="http://upload.hithack.org">Upload Et</a></li>
<li><a href="http://hitupload.joolo.com/index.php?page=top">Top 10</a></li>
</ul>
   <li id="foldheader">Kullanıcılar<ul id="foldinglist" style="display:none" style=&{head};>
      <li><a href="http://www.hithack.org/plug.php?e=team">Yöneticiler</a></li>
      <li><a href="http://hithack.org/users.php?f=all&s=regdate&w=desc">Üyeler</a></li>
   </ul>
      <li id="foldheader">Diğer<ul id="foldinglist" style="display:none" style=&{head};>
      <li><a href="http://hithack.org/misyon.html">Misyon</a></li>
      <li><a href="http://www.hithack.org/plug.php?e=overview">Site Haritası</a></li>
   </ul>
</ul>
<script language="JavaScript1.2">
<!--
/**
* Get cookie routine by Shelley Powers
* (shelley.powers@ne-dev.com)
*/
function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    // if cookie exists
    if (offset != -1) {
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1) end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}

if (get_cookie(window.location.pathname) != ''){
  var openresults=get_cookie(window.location.pathname).split(" ")
  for (i=0 ; i < openresults.length ; i++){
    foldinglist[openresults[i]].style.display=''
    document.all[foldinglist[openresults[i]].sourceIndex -
1].style.listStyleImage="url(open.gif)"
  }
}

if (document.all){
  var nodelength=foldinglist.length-1
  var nodes=new Array(nodelength)
  var openones=''
}

function check(){
  for (i=0 ; i <= nodelength ; i++){
    if (foldinglist[i].style.display=='')
       openones=openones + " " + i
  }
  document.cookie=window.location.pathname+"="+openones
}

if (document.all)
  document.body.onunload=check
//-->
   </script>

</body>

</html>

Kaan

Moderators


Online status

2,082 posts
http://www.ntka.org
Pagerank: 2

Location: Turkey
Occupation: Destek
Age: 25

#6028   2007-08-21 02:20 GMT      
Baştan kaybettiniz Hack sitesine yardım yk artık başınızın çaresine bakın gerçi burada yardım isteyenlerin hepsi hack sitesi sahibi.

RoCaLL

Members


Online status

30 posts
http://www.hithack.org
Pagerank: 0

Location: Turkey Erzincan
Occupation:
Age: 20

#6094   2007-08-25 17:55 GMT      

Etme çok biliyosun sanki Gerekirse ARkadaşlarla Biz birleşir bunu desteğinide verriz madm bizlere vermiyceksiniz bu sitenin işi bitti o zmn 3- 4kişi harici uğranmaz ztn bi konu aıoz çok geç cvp gelio

Kaan

Moderators


Online status

2,082 posts
http://www.ntka.org
Pagerank: 2

Location: Turkey
Occupation: Destek
Age: 25

#6101   2007-08-25 21:22 GMT      
Quote
RoCaLL :
Etme çok biliyosun sanki Gerekirse ARkadaşlarla Biz birleşir bunu desteğinide verriz madm bizlere vermiyceksiniz bu sitenin işi bitti o zmn 3- 4kişi harici uğranmaz ztn bi konu aıoz çok geç cvp gelio



Madem sen okadar çok biliyorsun neden buradan destek alıyorsun be adam sen ve senin gibiler yüzünden burası böyle oluyor git sitemi açıyorsun ne yapıyorsan yap buraya uğrama yeter hangi destek sitesinde sizin gibi insanlar var cıvık yılışık haysiyetsiz. Hangi destek sitesinde hack sitesi için destek istiyorlar Madem hackersiniz kendiniz yapın her şeyi çok bilmiş ukala insanlar Azcık saygılı olmayı öğrenin önce bir teşekkür etmesini bile bilmiyorsunuz. Saygısızlıktan başka bişi yaptığınız yok daha yaşlarınız 16 17 bişiler öğrenmeye çalışıyorsunuz ama bu şekilde davranarak hiç birşey ögrenemezsiniz ve her siteden kovulursunuz bir köpek gibi. Öncelikle saygılı olmayı ögrenin daha sonra öğrenmek istediklerinizi sorun araştırın ama önce saygı Başka bişi demiyorum..

Not: Bu yazıya isteiğiniz şekilde cevap yazabilirsiniz isterseniz küfür edin ama eminimki sizde anlayacaksınız bir gün bizim neden böyle davrandığımızı sizlere.. Sorun varsa PM ile Ulaşın.

hakan

Members


Online status

224 posts
http://www.sanalrisk.org
Pagerank: 0

Location: Turkey ?zmir
Occupation:
Age: 24

#6104   2007-08-25 22:42 GMT      
Quote
RoCaLL :
Etme çok biliyosun sanki Gerekirse ARkadaşlarla Biz birleşir bunu desteğinide verriz madm bizlere vermiyceksiniz bu sitenin işi bitti o zmn 3- 4kişi harici uğranmaz ztn bi konu aıoz çok geç cvp gelio



allah yardım etsin Sende Bi destek Sitesi Aç Gel buradan Açacagın Destek Sitesi İçin Yardım Al : )
Umursamaz Tavr?m?n Hastas? Olunuz / Sanalrisk.ORg

Msn Durumum :
No [img] !
> 1 <

Benzer konular (Similar topics) #BETA

Keywords (beta):

Forum Arşiv (beta):

[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] [68] [69] [70] [71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81] [82] [83] [84] [85] [86] [87] [88] [89] [90] [91] [92] [93] [94] [95] [96] [97] [98] [99] [100] [101] [102] [103] [104] [105] [106] [107] [108] [109] [110] [111] [112] [113] [114] [115] [116] [117] [118] [119] [120] [121] [122] [123] [124] [125] [126] [127] [128] [129] [130] [131] [132] [133] [134] [135] [136] [137] [138] [139] [140] [141] [142] [143] [144] [145] [146] [147] [148] [149] [150] [151] [152] [153] [154] [155] [156] [157] [158] [159] [160] [161] [162] [163] [164] [165] [166] [167] [168] [169] [170] [171] [172] [173] [174] [175] [176] [177] [178] [179] [180] [181] [182] [183] [184] [185] [186] [187] [188] [189] [190] [191] [192] [193] [194] [195] [196] [197] [198] [199] [200] [201] [202] [203] [204] [205] [206] [207] [208] [209] [210] [211] [212] [213] [214] [215] [216] [217] [218] [219] [220] [221] [222] [223] [224] [225] [226] [227] [228] [229] [230] [231] [232] [233] [234] [235]