Simple PHP calculator
I'm creating a basic PHP calculator that lets you enter two values and chose your operator then displays the answer. Everything is working fine except it's not outputting the answer to the browser. Here are the codes for my html and PHP files: <head> <meta charset="utf-8"> <title>Calculator</title> </head> <body> <form method="post" attribute="post" action="disp_form.php"> <p>First Value:<br/> <input type="text" id="first" name="first"></p> <p>Second Value:<br/> <input type="text" id="second" name="second"></p> <input type="radio" name="group1" id="add" value="add" checked="true"><p>+</p><br/>