![]() |
![]()
|
![]()
Özel Arama
|
||||||
| ASP, Perl, Php, Html ASP, Perl, Php, Html gibi her tür web programcılığı dili için yardım |
![]() |
|
|
LinkBack | Seçenekler | Stil |
|
|
#11 (permalink) |
|
Çavuş
![]() ![]() |
sitenize kim girdi kim çıktı hemen öğrenin
<script> <!-- // Copyright (c) 1996-1997 Tomer Shiran. All rights reserved. // Permission given to use the script provided that this notice remains as is. // Additional scripts can be found at Linkleri Üyelerimiz Görebilir. UslanmaM Üyeliği İçin Tıklayın // Boolean variable specified if alert should be displayed if cookie exceeds 4KB var caution = false // name - name of the cookie // value - value of the cookie // [expires] - expiration date of the cookie (defaults to end of current session) // [path] - path for which the cookie is valid (defaults to path of calling document) // [domain] - domain for which the cookie is valid (defaults to domain of calling document) // [secure] - Boolean value indicating if the cookie transmission requires a secure transmission // * an argument defaults when it is assigned aaaa as a placeholder // * a aaaa placeholder is not required for trailing omitted arguments function setCookie(name value expires path domain secure) {var curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "") if (!caution || (name + "=" + escape(value)).length <= 4000) document.cookie = curCookie else if (confirm("Cookie exceeds 4KB and will be cut!")) document.cookie = curCookie } // name - name of the desired cookie // * return string containing value of specified cookie or aaaa if cookie does not exist function getCookie(name) { var prefix = name + "=" var cookieStartIndex = document.cookie.indexOf(prefix) if (cookieStartIndex == -1) return aaaa var cookieEndIndex = document.cookie.indexOf(";" cookieStartIndex + prefix.length)if (cookieEndIndex == -1) cookieEndIndex = document.cookie.length return unescape(document.cookie.substring(cookieStartInde x + prefix.length cookieEndIndex))} // name - name of the cookie // [path] - path of the cookie (must be same as path used to create cookie) // [domain] - domain of the cookie (must be same as domain used to create cookie) // * path and domain default if assigned aaaa or omitted if no explicit argument proceeds function deleteCookie(name path domain) {if (getCookie(name)) { document.cookie = name + "=" + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + "; expires=Thu 01-Jan-70 00:00:01 GMT"} } // date - any instance of the Date object // * you should hand all instances of the Date object to this function for "repairs" // * this function is taken from Chapter 14 "Time and Date in JavaScript" in "Learn Advanced JavaScript Programming"function fixDate(date) { var base = new Date(0) var skew = base.getTime() if (skew > 0) date.setTime(date.getTime() - skew) } var now = new Date() fixDate(now) now.setTime(now.getTime() + 31 * 24 * 60 * 60 * 1000) var name = getCookie("name") if (!name) name = prompt("Lütfen isminizi yazın:" "Adınız(site sizi bu isimle hatırlıycak.")setCookie("name" name now)document.write(" " + name + "") //--> :-):-):-):-):-):-):-):-):-):-):-) |
|
|
|
|
|
#12 (permalink) |
|
Çavuş
![]() ![]() |
Super bi mouse effect
<title> royiv24 </title> a href="http://www.cyberhackteams.tr.cx"target="_blank"> <img src="http://img117.imageshack.us/img117/9629/115557300768295me5.gif" alt="CyberHackTeams" border="0" /> </a> <body> <style>body{CURSOR: url("http://www.forumzirve.com/forum/images/mause.cur")</style> <!-- logo --> <center><a name="top"></a> <table border="0" width="100%" cellpadding="0" cellspacing="0" align="center"> <tr> |
|
|
|
|
|
#13 (permalink) |
|
Çavuş
![]() ![]() |
danseden yıldızlar mouse efekti
<HEAD> <!-- These files are to distributed with AAScripter ONLY (cyberiapc.com) --> </HEAD> <BODY bgcolor="#000000"> <LAYER NAME="a0" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0 0 3 3"></LAYER><LAYER NAME="a1" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0 0 3 3"></LAYER><LAYER NAME="a2" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0 0 3 3"></LAYER><LAYER NAME="a3" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0 0 3 3"></LAYER><LAYER NAME="a4" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0 0 3 3"></LAYER><LAYER NAME="a5" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0 0 3 3"></LAYER><LAYER NAME="a6" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0 0 3 3"></LAYER><script language="JavaScript"> <!-- /* Dancing Stars cursor (Submitted by Kurt at Linkleri Üyelerimiz Görebilir. UslanmaM Üyeliği İçin Tıklayın) Modified and permission granted to Dynamic Drive to feature script in archive For aaaa source usage terms and 100's more DHTML scripts visit Linkleri Üyelerimiz Görebilir. UslanmaM Üyeliği İçin Tıklayın*/ if (document.all){ document.write('<div id="starsDiv" style="position:absolute;top:0px;left:0px">') for (xy=0;xy<7;xy++) document.write('<div style="position:relative;width:3px;height:3px;back ground:#FFFF00;font-size:2px;visibility:visible"></div>') document.write('</div>') } if (document.layers) {window.captureEvents(Event.MOUSEMOVE);} var yBase = 200; var xBase = 200; var yAmpl = 10; var yMax = 40; var step = .2; var ystep = .5; var currStep = 0; var tAmpl=1; var Xpos = 1; var Ypos = 1; var i = 0; var j = 0; if (document.all) { function MoveHandler(){ Xpos = document.body.scrollLeft+event.x; Ypos = document.body.scrollTop+event.y; } document.onmousemove = MoveHandler; } else if (document.layers) { function xMoveHandler(evnt){ Xpos = evnt.pageX; Ypos = evnt.pageY; } window.onMouseMove = xMoveHandler; } function animateLogo() { if (document.all) { yBase = window.document.body.offsetHeight/4; xBase = window.document.body.offsetWidth/4; } else if (document.layers) { yBase = window.innerHeight/4 ; xBase = window.innerWidth/4; } if (document.all) { var totaldivs=document.all.starsDiv.all.length for ( i = 0 ; i < totaldivs ; i++ ) { var tempdiv=document.all.starsDiv.all[i].style tempdiv.top = Ypos + Math.cos((20*Math.sin(currStep/20))+i*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10); tempdiv.left = Xpos + Math.sin((20*Math.sin(currStep/20))+i*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + i*25)/10); } } else if (document.layers) { for ( j = 0 ; j < 7 ; j++ ) { var templayer="a"+j document.layers[templayer].top = Ypos + Math.cos((20*Math.sin(currStep/20))+j*70)*yBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10); document.layers[templayer].left =Xpos + Math.sin((20*Math.sin(currStep/20))+j*70)*xBase*(Math.sin(10+currStep/10)+0.2)*Math.cos((currStep + j*25)/10); } } currStep += step; setTimeout("animateLogo()" 15);} animateLogo(); // --> :-):-):-):-):-):-):-):-):-):-):-) <br> <br> <font size="1" face="verdana"><center>Please respect the copyrights of the scripts' authors! -Ali Almossawi (author of AAScripter & webmaster of CyberiaPC.com) <center></font> </BODY> </HTML> |
|
|
|
|
|
#14 (permalink) |
|
Çavuş
![]() ![]() |
Sitende tarih ve saat
Sitenizin uygun bir köşesine yapyştyryn <script> var mydate=new Date() var year=mydate.getYear() if (year < 1000) year+=1900 var day=mydate.getDay() var month=mydate.getMonth() var daym=mydate.getDate() if (daym<10) daym="0"+daym var dayarray=new Array("Pazar" "Pazartesi" "Salı" "Çarşamba" "Perşe mbe" "Cuma" "Cumartesi")var montharray=new Array("Ocak" "Şubat" "Mart" "Nisan" "Mayıs" "Hazir an" "Temmuz" "Ağustos" "Eylül" "Ekim" "Kasım" "Ara lık")myhours = mydate.getHours(); if (myhours >= 12) { myhours = (myhours == 12) ? 12 : myhours - 12; mm = " Akşam"; } else { myhours = (myhours == 0) ? 12 : myhours; mm = " Sabah"; } myminutes = mydate.getMinutes(); if (myminutes < 10){ mytime = ":0" + myminutes; } else { mytime = ":" + myminutes; }; document.write("<font color='black' face='Arial' size=2><b>" + myhours + mytime + mm + " " + dayarray[day]+" "+montharray[month]+" "+daym+" "+year+"</b></font>"):-):-):-):-):-):-):-):-):-):-):-) <a href="http://www.esraticaret.com" target="_blank">ESRA TİCARET</a> <a href="http://mywebpara.bz.tc" target="_blank">MY WEB PARA</a> <a href="http://rcworld.bz.tc" target="_blank">RC WORLD</a> |
|
|
|
|
|
#18 (permalink) |
|
Yeni Üye
![]() |
Aga hava atmak gibi olmasın ama bne hacker lığa başlıyalı 4-5 ay oldu vede site hacklediğimde başkalarının index lerini alıyorumm kendime index.html yapmak istiom ama html kodlarını bulamk zor oluooo biraz yarıdmm edinn buraya topic açınn html kodlarını öylece koyunn nolursunnnuzz
|
|
|
|
|
|
#20 (permalink) |
|
Çavuş
![]() ![]() |
arkadaş ben sana msn adresimi vereyim sen Linkleri Üyelerimiz Görebilir. UslanmaM Üyeliği İçin Tıklayın adresinden bana ulaş kendini tanıt ben sana her trürlü yardımda bulunurum...
|
|
|
|
![]() |
| Beğenilen Sayfayı İşaretleyin |
| Konuyla Alakalı Etiketler |
| • php html kodlar aktif • html kodlar • açık html kodlar • Sinema Html Kodları • html kodlarını koruma kodu • php kodlarını korumak • php den html kod • dinler tarihi html kodları • alttan çıkan bar html kodu • HTML-Kodları Açık |
| Konuyu Toplam 1 Üye okuyor. (0 Kayıtlı üye ve 1 Misafir) | |
| Seçenekler | |
| Stil | |
|
|
Benzer Konular
|
||||
| Konu | Konuyu Başlatan | UslanmaM | Cevaplar | Son Mesaj |
| Havai Fişek html kodu isteyen varmı | royiv24 | ASP, Perl, Php, Html | 1 | 06-14-2009 02:16 PM |
| Bakalim Hangİ Yemeksİnİz?? ;) | ABYSS | Burçlar ve Fal | 16 | 04-22-2008 05:55 PM |
| Html Kodlari | royiv24 | ASP, Perl, Php, Html | 6 | 08-06-2007 03:17 AM |
| Haraç İsteyen Virüs | ABYSS | Pc Güvenlik | 3 | 04-27-2007 12:57 AM |
