Bedava Sitem-Yetkin Forum-Html-Css
SİTEMİZE PAYLAŞIM YAPMAK İÇİN LÜTFEN ÜYE OLUNUZ!

Join the forum, it's quick and easy

Bedava Sitem-Yetkin Forum-Html-Css
SİTEMİZE PAYLAŞIM YAPMAK İÇİN LÜTFEN ÜYE OLUNUZ!
Bedava Sitem-Yetkin Forum-Html-Css
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Giriş yap

Şifremi unuttum

Arama
 
 

Sonuç :
 


Rechercher çıkıntı araştırma

En iyi yollayıcılar
DanGeR (75)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 
Admin (74)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 
hizmetkar (56)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 
FeaRain (34)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 
zolin122 (21)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 
TUNCAMAX (13)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 
Joesque (7)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 
buraks2931 (1)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 
metsen (1)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 
istanbulhatti (1)
Doğum Günü Hesaplama Vote_lcapDoğum Günü Hesaplama Voting_barDoğum Günü Hesaplama Vote_rcap 

En son konular
» PhotoFilitrede Avatar Yapımı
Doğum Günü Hesaplama EmptyC.tesi Haz. 19, 2010 2:26 pm tarafından buraks2931

» NİCK SİTESİ
Doğum Günü Hesaplama EmptyPaz Eyl. 27, 2009 2:52 pm tarafından cucuvagrant

» Süper Tasarım
Doğum Günü Hesaplama EmptyPerş. Eyl. 24, 2009 3:23 am tarafından istanbulhatti

» Rüya Resim Efekti
Doğum Günü Hesaplama EmptyPtsi Eyl. 14, 2009 8:27 am tarafından FeaRain

» Avatar
Doğum Günü Hesaplama EmptyPtsi Eyl. 14, 2009 8:25 am tarafından FeaRain

» BanneR İstek !
Doğum Günü Hesaplama EmptyPaz Eyl. 13, 2009 2:13 pm tarafından TUNCAMAX

» İmza
Doğum Günü Hesaplama EmptyPaz Eyl. 13, 2009 1:55 pm tarafından TUNCAMAX

» Konu Açmadan Okuyun
Doğum Günü Hesaplama EmptyPaz Eyl. 13, 2009 12:29 pm tarafından TUNCAMAX

» Konu Açmadan Okuyun
Doğum Günü Hesaplama EmptyPaz Eyl. 13, 2009 12:21 pm tarafından TUNCAMAX

» Rütbeler [ 001 Tasarım'ım ]
Doğum Günü Hesaplama EmptyPaz Eyl. 13, 2009 12:20 pm tarafından TUNCAMAX

Kimler hatta?
Toplam 3 kullanıcı online :: 0 Kayıtlı, 0 Gizli ve 3 Misafir

Yok

[ Bütün listeye bak ]


Sitede bugüne kadar en çok 11 kişi Cuma Ağus. 21, 2009 8:38 pm tarihinde online oldu.

Doğum Günü Hesaplama

2 posters

Aşağa gitmek

Çözüldü Doğum Günü Hesaplama

Mesaj tarafından DanGeR Ptsi Ağus. 31, 2009 2:13 pm






HANGİ GÜN DOĞDUN?



Dogdugunuz tarihi yazın ve hesapla tusuna basin



Dogdugunuz ay(1-12):


Dogdugunuz gun (1-31):


Dogdugunuz yil(ornek:2007):





Dogdugunuz tarih:


DOGDUGUNUZ GUN:






Kod:
 <!-- START OF script -->
<script LANGUAGE="Javascript">
<!-- begin script

//General Array Function
function MakeArray(n) {
  this.length = n;
  for (var i = 1; i <=n; i++) {
    this[i] = 0;
  }
}

//Initialize Days of Week Array
days = new MakeArray(7);
days[0] = "Cumartesi"
days[1] = "Pazar"
days[2] = "Pazartesi"
days[3] = "Sali"
days[4] = "Carsamba"
days[5] = "Persembe"
days[6] = "Cuma"

//Initialize Months Array
months = new MakeArray(12);
months[1] = "Ocak"
months[2] = "Subat"
months[3] = "Mart"
months[4] = "Nisan"
months[5] = "Mayis"
months[6] = "Haziran"
months[7] = "Temmuz"
months[8] = "Agustos"
months[9] = "Eylul"
months[10] = "Ekim"
months[11] = "Kasim"
months[12] = "Aralik"

//Day of Week Function
function compute(form) {
  var val1 = parseInt(form.day.value, 10)
  if ((val1 < 0) || (val1 > 31)) {
      alert("1 ile 31 arasi bir tarih girin…")
  }
  var val2 = parseInt(form.month.value, 10)
  if ((val2 < 0) || (val2 > 12)) {
      alert("1 ile 12 arasi bir tarih girin…")
  } 
  var val2x = parseInt(form.month.value, 10)
  var val3 = parseInt(form.year.value, 10)
  if (val3 < 1900) {
      alert("1900 ile 2050 arasi bir tarih girin…")
  }
  if (val2 == 1) {
      val2x = 13;
      val3 = val3-1
  }
  if (val2 == 2) {
      val2x = 14;
      val3 = val3-1
  }
  var val4 = parseInt(((val2x+1)*3)/5, 10)
  var val5 = parseInt(val3/4, 10)
  var val6 = parseInt(val3/100, 10)
  var val7 = parseInt(val3/400, 10)
  var val8 = val1+(val2x*2)+val4+val3+val5-val6+val7+2
  var val9 = parseInt(val8/7, 10)
  var val0 = val8-(val9*7)
  form.result1.value = months[val2]+" "+form.day.value +", "+form.year.value
  form.result2.value = days[val0]


// end script -->
</script>
<h3><i><a href="http://www.kodbul.piczo.com" _fcksavedurl="http://www.kodbul.piczo.com"><font face="Arial Black" color="#FF0000">
<span style="text-decoration: none">HANGİ GÜN DOĞDUN? </span> </font></a></i></h3>
<b>
<p><font color="#FF0000">Dogdugunuz tarihi yazın ve hesapla tusuna basin</font></b></p>
<form>
<p><font color="#FF0000"><b>Dogdugunuz ay(1-12):</b></font> <input TYPE="text" NAME="month" SIZE="2"> </p>
<p><b><font color="#FF0000">Dogdugunuz gun (1-31): </font></b> <input TYPE="text" NAME="day" SIZE="2"> </p>
<p><b><font color="#FF0000">Dogdugunuz yil(ornek:2007)</font></b>: <input TYPE="text" NAME="year" SIZE="4"> </p>
<p><font color="#FF0000">
<input TYPE="button" VALUE="Hesapla" ONCLICK="compute(this.form)" style="font-weight: 700"><b>
</b> <input TYPE="reset" VALUE="Temizle" style="font-weight: 700"><b> </b></font> </p>
<p><font color="#FF0000"><b>Dogdugunuz tarih: </b></font> <input TYPE="text" NAME="result1" SIZE="18"> </p>
<p><u><font color="#FF0000"><b>DOGDUGUNUZ GUN: </b></font></u> <input TYPE="text" NAME="result2" SIZE="20"> </p>
</form>
<html> </html>
<style>
body {);
background-repeat: no-repeat;
background-position: bottom left;
background-attachment: fixed }
</style>
</body></html>
DanGeR
DanGeR

Mesaj Sayısı : 75
Para : 0
Kayıt tarihi : 21/08/09
Yaş : 30
Nerden : İstanbuL

Sayfa başına dön Aşağa gitmek

Çözüldü Geri: Doğum Günü Hesaplama

Mesaj tarafından hizmetkar Ptsi Ağus. 31, 2009 2:25 pm

paylaşım için saol
hizmetkar
hizmetkar

Mesaj Sayısı : 56
Para : 0
Kayıt tarihi : 21/08/09

http://www.bilgipasaji.forum.st

Sayfa başına dön Aşağa gitmek

Sayfa başına dön


 
Bu forumun müsaadesi var:
Bu forumdaki mesajlara cevap veremezsiniz