PHP ile kullanıcının girdiği iki sayıyı toplayarak sonucu ekranda gösteren Form örneğine ait HTML + PHP kodları ve ekran çıktısı:
php-toplama.php sayfası
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> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> </head> <body> <form action="php-toplama.php" method="post"> Sayı 1 <br> <input type="text" name="txtSayi1"><br> Sayı 2 <br> <input type="text" name="txtSayi2"><br> <input type="submit" name="btn" value="TOPLA"> </form> <?php if(isset($_POST["btn"])){ $sayi1=$_POST["txtSayi1"]; $sayi2=$_POST["txtSayi2"]; $toplam=$sayi1+$sayi2; echo "Toplam : $toplam"; } ?> </body> </html> |
Ekran Çıktısı:
Yorum Yap