Bu örneğimizde kullanıcının klavyeden girmiş olduğu bir sayının incelenerek tek sayı mı yoksa çift sayı mı olduğunu bulan ve sonucu ekranda gösteren Php kodunu yapacağız. Bunun için kullanıcının klavyeden bir sayı girmesini sağlayan bir form sayfası bir de girilen sayıyı inceleyerek sayının tek mi çift mi olduğunu bulan ve ekranda gösteren diğer sayfamız olacak. Programın kodları aşağıdaki gibidir.
teksayiciftsayi1.php kodları:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>PHP Tek Sayı Çift Sayı-1</title> </head> <body> <form action="teksayiciftsayi2.php" method="post"> <table border="0" bgcolor="#CC99FF"> <tr> <td colspan="2" align="center">Tek Sayı Çift Sayı Bulma</td> </tr> <tr> <td>Bir Sayı Giriniz:</td> <td><input name="sayi" type="text" /></td> </tr> <tr> <td> </td> <td><input name="gonder" type="submit" value="Sayıyı İncele" /></td> </tr> </table> </form> </body> </html> |
teksayiciftsayi2.php kodları:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>PHP Tek Sayı Çift Sayı-2</title> </head> <body> <?php $sayi=$_POST['sayi']; if ($sayi % 2 == 0 ) { $sonuc="Çift Sayıdır."; } else { $sonuc="Tek Sayıdır."; } ?> <table width="300" border="1" bgcolor="#33FFFF"> <tr> <td colspan="2" align="center">Sayı İceleme</td> </tr> <tr> <td width="169">Girdiğiniz Sayı:</td> <td width="115"><?php echo $sayi; ?></td> </tr> <tr> <td> Sayı</td> <td><?php echo $sonuc; ?></td> </tr> </table> <A HREF="javascript:javascript:history.go(-1)">Geri dön</A> </body> </html> |
Aşağıdaki resimde 45 sayısı giriliyor ve gönderiliyor.
Aşağıdaki resimde 45 sayısı inceleniyor ve sayının tek sayı olduğu ekrana yazdırılıyor.
Aşağıdaki resimde 100 sayısı giriliyor ve gönderiliyor.
Aşağıdaki resimde 100 sayısı inceleniyor ve sayının çift sayı olduğu ekrana yazdırılıyor.
Yorum Yap