PHP02 – Formularze

PHP – Formularze Formularz.html <!DOCTYPE HTML> <html> <head> <meta charset=”utf-8″> </head> <body> <!– formularz dodawania nowego rekordu –> <form action=”kalkulator.php” method=”post”> liczba a: <input type=”tekst” name=”liczbaa”> <br> liczba b: <input type=”tekst” name=”liczbab”> <br> <input type=”submit” value=”wyślij”> <input type=”reset” value=”czyści”> </form> </body> </html> kalkulator.php <!DOCTYPE HTML> <html> <head> <meta charset=”utf-8″> </head> <body> <?php //prosty kalkulator $a … Czytaj dalej PHP02 – Formularze