Kullanıcının text nesnelerine girdiği iki sayıyı toplayıp toplam sonucu ekrana yazdıran php program. Text nesnelerinden alınan sayılar ve buton sayfanın üst kısmında kontrol edilip her hangi bir post işlemi gerçeleştiyse sayıların toplamını ekrana yazdırmaktadır.
Ekran Çıktısı:
Youtube Videosu:
PHP Kodu:
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 | <?php $s1=0; $s2=0; $toplam=0; if(isset($_POST["add"])) { $s1=$_POST["s1"]; $s2=$_POST["s2"]; $toplam=$s1+$s2; } ?> <!doctype html> <html> <head> <meta charset="utf-8"> <title>PHP İki Sayının Toplamı</title> <style> label{ display: block; } </style> </head> <body> <h1>Girilen İki Sayının Toplamı:<?=$toplam?></h1> <form method="post"> <label>Sayı 1: <input type="text" name="s1" value="<?=$s1?>"> </label> <label>Sayı 2: <input type="text" name="s2" value="<?=$s2?>"> </label> <button type="submit" name="add">İki Sayıyı Topla</button> </form> </body> </html> |
Yorum Yap