USLANMAM

UslanmaM En Kaliteli Bilgi Adresiniz
USLANMAM öğesini iGoogle sayfanıza ekleyin.
Geri git   USLANMAM > PROGRAM > PROGRAMLAMA DİLLERİ > ASP, Perl, Php, Html
UslanmaM Resim AlbümleriSosyal Gruplar
Özel Arama
Kayıt ol Sosyal Gruplar Ajanda Konuları Okundu Kabul Et

ASP, Perl, Php, Html ASP, Perl, Php, Html gibi her tür web programcılığı dili için yardım

Yeni Konu aç Cevapla
 
LinkBack Seçenekler Stil
Alt 12-19-2006, 01:14 PM   #11 (permalink)
Çavuş
Standart

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 + "")

//-->

:-):-):-):-):-):-):-):-):-):-):-)
royiv24 isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 12-19-2006, 01:15 PM   #12 (permalink)
Çavuş
Standart

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>
royiv24 isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 12-19-2006, 01:16 PM   #13 (permalink)
Çavuş
Standart

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="0033"></LAYER>

<LAYER NAME="a1" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0033"></LAYER>

<LAYER NAME="a2" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0033"></LAYER>

<LAYER NAME="a3" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0033"></LAYER>

<LAYER NAME="a4" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0033"></LAYER>

<LAYER NAME="a5" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0033"></LAYER>

<LAYER NAME="a6" LEFT=10 TOP=10 VISIBILITY=SHOW BGCOLOR="#FFFF00" CLIP="0033"></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>
royiv24 isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 12-19-2006, 01:17 PM   #14 (permalink)
Çavuş
Standart

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>
royiv24 isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 12-19-2006, 01:19 PM   #15 (permalink)
Çavuş
Standart

Arkadaşlar çalışmalarımın devamı için + Rep
royiv24 isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 02-20-2007, 11:20 PM   #16 (permalink)
Tuğgeneral
 
PARADISE_34 - ait Kullanıcı Resmi (Avatar)
Standart

paylaşımın için saol
PARADISE_34 isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 02-21-2007, 04:47 PM   #17 (permalink)
Çavuş
Standart

önemli değil kardeşim her zaman...

.....site reklamı yasaktır....

....telefon numarası vermek yasaktır....

Konu CallaouS tarafından (06-04-2007 Saat 06:09 PM ) değiştirilmiştir.. Sebep: site reklamı var
royiv24 isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 06-04-2007, 06:03 PM   #18 (permalink)
Yeni Üye
Standart

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
_rainbow_ isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 06-04-2007, 06:04 PM   #19 (permalink)
Yeni Üye
Standart

nolur açınn bakınn yalvarıyorumm
_rainbow_ isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Alt 06-05-2007, 12:50 PM   #20 (permalink)
Çavuş
Standart

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...
royiv24 isimli Üye şimdilik offline konumundadır   Alıntı ile Cevapla
Cevapla

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

Yetkileriniz
You may not post new threads
You may not post replies
Eklenti Ekleyemezsiniz
You may not edit your posts

BB code is Açık
Smileler Açık
[IMG] Kodları Açık
HTML-KodlarıKapalı
Trackbacks are Açık
Pingbacks are Açık
Refbacks are Açık

Gitmek istediğiniz klasörü seçiniz

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


Bütün Zaman Ayarları WEZ +3 olarak düzenlenmiştir. Şu Anki Saat: 12:49 PM .
Üyelerimiz görüşlerini önceden onay olmadan anında yazabilmektedir, bu yazılardan dolayı doğabilecek sorumluluklar yazan kullanıcılara aittir, UslanmaM yoneticileri itina ile icerik kontrolleri yapmaktadir, yine de UslanmaM' da yasalara aykırı unsurlar bulursanız 04/05/2007 tarihli ve 5651 sayılı yasa gereği destek(@)uslanmam.com veya 0537 403 03 03 numaralı telefona bildirebilirsiniz, gereği yapılacaktır.
English Explanation: Our users can give their opinions without getting any approval in our site, all the responsibilities which can rise from these articles belong to these users, the managers of UslanmaM control the contents very carrefully, but if you find any item opposite to the rules destek(@)uslanmam.com or dial +90537 403 03 03


Powered by vBulletin Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.'e Aittir.
Tercüme Eden : TEKplatform
Search Engine Optimization by vBSEO 3.2.0
[Gizlilik Politikası]-[UslanmaM Kuralları]-[UslanmaM İletişim/Contact]
Alexa
Sagopa Kajmer*Bilgi*izafet*Melekler Mekanı*Web Hattı*MaxiCep*araba