Baktubal
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Baktubal

Kafasına GöreTakılanların En Gözde Mekanı
 
AnasayfaLatest imagesAramaKayıt OlGiriş yap
Arama
 
 

Sonuç :
 
Rechercher çıkıntı araştırma
En son konular
» HERKES BAKSIN!!!!
Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeÇarş. Ağus. 19, 2009 10:14 am tarafından Junior

» İkariam Nedir?
Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeÇarş. Ağus. 19, 2009 9:57 am tarafından Junior

» Duyduk Duymadık Demeyin!! :shock:u
Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeÇarş. Ağus. 19, 2009 9:55 am tarafından Junior

» bnm onerilerim
Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeÇarş. Ağus. 19, 2009 9:46 am tarafından Junior

» C.Ronaldoo
Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeSalı Ağus. 18, 2009 4:06 pm tarafından Underworld

» The Void 2009
Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeSalı Ağus. 18, 2009 11:11 am tarafından Admin

» Ship Simulator 2008
Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeSalı Ağus. 18, 2009 11:10 am tarafından Admin

» Guitar Hero 3
Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeSalı Ağus. 18, 2009 11:08 am tarafından Admin

» Railroad Lines [2 ParT]
Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeSalı Ağus. 18, 2009 11:07 am tarafından Admin

Giriş yap
Kullanıcı Adı:
Şifre:
Beni hatırla: 
:: Şifremi unuttum
En iyi yollayıcılar
Junior
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
Admin
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
aysechik
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
afili-yalnizlik
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
maddoxx
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
niyazi263
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
fatihhh
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
T-ReX
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
atmaca
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
ByyéL
Sitene Girenlerin İsim Kaydı Kodu Vote_lcapSitene Girenlerin İsim Kaydı Kodu 1450Sitene Girenlerin İsim Kaydı Kodu Vote_rcap 
Kimler hatta?
Toplam 2 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 2 Misafir

Yok

Sitede bugüne kadar en çok 15 kişi Salı Ekim 23, 2012 10:36 pm tarihinde online oldu.
Istatistikler
Toplam 72 kayıtlı kullanıcımız var
Son kaydolan kullanıcımız: Yüksek Gerilim

Kullanıcılarımız toplam 613 mesaj attılar bunda 249 konu
Forum
Pagerank
Pagerank
Reklam
Sitene Girenlerin İsim Kaydı Kodu Banner

 

 Sitene Girenlerin İsim Kaydı Kodu

Aşağa gitmek 
2 posters
YazarMesaj
aysechik




Mesaj Sayısı : 99
Kayıt tarihi : 06/04/09

Sitene Girenlerin İsim Kaydı Kodu Empty
MesajKonu: Sitene Girenlerin İsim Kaydı Kodu   Sitene Girenlerin İsim Kaydı Kodu Icon_minitimePtsi Nis. 06, 2009 4:45 pm

Kod:
<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 http://www.javadepo.com
// 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 null as a placeholder
// * a null 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 null if cookie does not exist
function getCookie(name) {
var prefix = name + "="
var cookieStartIndex = document·cookie.indexOf(prefix)
if (cookieStartIndex == -1)
return null
var cookieEndIndex = document·cookie.indexOf(";", cookieStartIndex + prefix.length)
if (cookieEndIndex == -1)
cookieEndIndex = document·cookie.length
return unescape(document·cookie.substring(cookieStartIndex + 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 null 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 + ""
//-->
</script>
Sayfa başına dön Aşağa gitmek
afili-yalnizlik




Mesaj Sayısı : 61
Kayıt tarihi : 01/06/09

Sitene Girenlerin İsim Kaydı Kodu Empty
MesajKonu: Geri: Sitene Girenlerin İsim Kaydı Kodu   Sitene Girenlerin İsim Kaydı Kodu Icon_minitimePerş. Haz. 04, 2009 9:09 am

güzel
Sayfa başına dön Aşağa gitmek
aysechik




Mesaj Sayısı : 99
Kayıt tarihi : 06/04/09

Sitene Girenlerin İsim Kaydı Kodu Empty
MesajKonu: Geri: Sitene Girenlerin İsim Kaydı Kodu   Sitene Girenlerin İsim Kaydı Kodu Icon_minitimeÇarş. Haz. 17, 2009 1:13 pm

bu kodları nereden buluyounuz yahu
Sayfa başına dön Aşağa gitmek
 
Sitene Girenlerin İsim Kaydı Kodu
Sayfa başına dön 
1 sayfadaki 1 sayfası
 Similar topics
-

Bu forumun müsaadesi var:Bu forumdaki mesajlara cevap veremezsiniz
Baktubal :: Html Kodları :: Html Kodları-
Buraya geçin: