PHP ile kullanıcıdan Vize notu ve Final notunu isteyen ve girilen vize final notlarının ortalamasını hesaplayan kodlar. Vize ve Final Notu ortalaması ve Geçme / Kalma durumunu hesaplarken aşağıdaki yol izlenecektir.
Ortalama hesabı : Vize notunun %40 ı ve Final notunun %60 ı toplanarak bulunacaktır.
Geçme / Kalma Durumu : Ortalama 50 ve üstüyse ve Final notu 50′ den büyükse Durum “GEÇTİ” değilse “KALDI” olarak yazdırılacaktır.
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 41 | <!doctype html> <html> <head> <meta charset="utf-8"> <title>www.tasarimkodlama.com - PHP Örnekleri</title> </head> <body> <div class="container"> <?php if(isset($_POST["kontrol"]))//kontrol adında bir form nesnesi var mı kontrolü yapılıyor { $vize=$_POST["vize"]; $final=$_POST["final"]; $sonuc=$vize*0.4 + $final*0.6; if($sonuc >= 50 && $final >= 50) { echo "<h1 class='text-info'>$sonuc ,GEÇTİ</h1>"; } else { echo "<h1 class='text-danger'>$sonuc ,KALDI</h1>"; } } ?> <hr> <form action="<?=$_SERVER['PHP_SELF']?>" method="post"> <div class="form-group"> <label for="vize">Vize Notu:</label> <input type="text" class="form-control" name="vize"> </div> <div class="form-group"> <label for="final">Final Notu:</label> <input type="text" class="form-control" name="final"> </div> <button type="submit" name="kontrol" class="btn btn-default" >Kontrol Et</button> </form> </div> </body> </html> |
Yorum Yap