You are not logged in.

cemilbaba

Trainee

  • "cemilbaba" started this thread

Posts: 58

Date of registration: Dec 22nd 2006

  • Send private message

1

Tuesday, January 30th 2007, 1:00pm

Sitenizde kimgirdi kim çıktı belirler tıkla ve gör

[code:1]<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>[/code:1]
cemil

korulu-fm

Trainee

Posts: 40

Date of registration: Mar 8th 2007

  • Send private message

2

Saturday, June 2nd 2007, 4:44pm

eline sağlık çok güzel bir paylaşım.

djhsoo

Beginner

Posts: 2

Date of registration: Jun 9th 2007

Location: istanbul

  • Send private message

3

Saturday, June 9th 2007, 11:58pm

ELLERİNE SAĞLIK KARDESİM

CHIL3K3SH

Trainee

Posts: 21

Date of registration: Jun 19th 2007

  • Send private message

4

Tuesday, June 19th 2007, 5:55pm

teşekkürler ellerine sağlık

xseure

Trainee

Posts: 17

Date of registration: Jun 11th 2007

  • Send private message

5

Thursday, August 2nd 2007, 7:56am

güzel bir paylasim giren kisi ismini nerde görecem ben acaba

yerli

Beginner

Posts: 2

Date of registration: Dec 16th 2007

  • Send private message

6

Monday, December 17th 2007, 12:03am

evet nerde görecez kimin girip ciktigini usta

omer68

Trainee

Posts: 47

Date of registration: Feb 24th 2008

Location: Aksaray

  • Send private message

7

Sunday, March 23rd 2008, 6:53pm

Paylaşım için teşekkürler. ellereni sağlık

selly72

Intermediate

Posts: 395

Date of registration: Feb 16th 2008

Location: Mönchengladbach

  • Send private message

8

Sunday, March 23rd 2008, 8:20pm

tesekkürler paylasim icin

  • "60GeNCLiK" is male

Posts: 3,650

Date of registration: Jan 1st 2008

Location: HOLLANDA

  • Send private message

9

Sunday, March 23rd 2008, 10:58pm

cemilbaba, paylasim icin tskler
Ruh eşimi buLamyınca anLAdım ki eşsiz biR ruhum vaR... : )

Posts: 99

Date of registration: Jan 25th 2008

  • Send private message

10

Saturday, April 12th 2008, 10:44pm

sagol güzel miş yawww :) paylasım icin teşekurler kardesim

CcC-onur-CcC

Professional

Posts: 903

Date of registration: Mar 10th 2008

Location: ALLATURKA ÞEHRÝ

  • Send private message

11

Tuesday, July 1st 2008, 12:08am

saol kardes gzuelmıs

cansa

Beginner

Posts: 7

Date of registration: Jul 22nd 2008

Location: ANKARA

  • Send private message

12

Thursday, July 24th 2008, 9:10pm

ellerınıze yuregınıze emegınıze saglık

cansa

Beginner

Posts: 7

Date of registration: Jul 22nd 2008

Location: ANKARA

  • Send private message

13

Thursday, July 24th 2008, 9:11pm

bısey sormak ıstıyorum guest olarak gelen kişilerın kım olgunu ogrenme sansımız varmı acaba ? bilgileriniz için simdiden sonsuz tskl.

cansa

Beginner

Posts: 7

Date of registration: Jul 22nd 2008

Location: ANKARA

  • Send private message

14

Thursday, July 24th 2008, 9:12pm

f5 sürümde banlama olanagı varmı acaba bileniniz varmi

  • "D3NiZLi-Li" is male

Posts: 3,304

Date of registration: Jul 29th 2007

Location: Denizli

  • Send private message

15

Thursday, July 24th 2008, 9:16pm

cansa, malesef flatcastta boyle imkan yok
F5 de banlama yok sol mause ile cift tiklamayla - isareti var
- yaptinmi sadece dinleyebilir...
Remix Engineers : http://remix.land

katlan

Professional

Posts: 1,207

Date of registration: May 22nd 2008

Location: www.katlanfm.com

  • Send private message

16

Thursday, July 24th 2008, 10:05pm

paylaşım için teşekkürler usta saol

C@NISI

Trainee

Posts: 123

Date of registration: Sep 28th 2008

Location: Avusturya

  • Send private message

17

Thursday, October 9th 2008, 11:16pm

ya bu kodu nere eklicem onu anlayamadim bi türlü yardimci olursan sevinirim tskler altindere fm

Lilyumm

Trainee

Posts: 87

Date of registration: Sep 19th 2008

  • Send private message

18

Sunday, December 7th 2008, 1:33pm

cemilbaba Yuregine saglik...Paylasim icin tskler...

yusufyk

Trainee

Posts: 26

Date of registration: Apr 21st 2007

  • Send private message

19

Tuesday, June 2nd 2009, 2:59pm

Arkadaşlar bu kodu nereye ekleyeceğiz bi değişiklik yapacakmiyiz radyo.indez sayfasina ekledim bisey cikmadi

Posts: 37

Date of registration: May 28th 2009

Location: MUGLA

  • Send private message

20

Monday, January 18th 2010, 6:59am

tskr ben ekledim bi defalık giriste isim giriliyor aynı pcdn