The php code for if 2 buttons are clicked and echoes both numbers?

David

New member
// a section of code
if (isset($_POST['submit'] ))
{
echo " First Choice is ";
echo $_POST['submit'];
$choice1 = $_POST['submit'];
echo "<br />";
}
 
Back
Top