Its obvious what this should do, if i press button A it should display the message in A and so on but it doesnt work, This is more or less the same code from a textbook whats wrong with the code
"> <?php print "$mess" ?> <?php print $_POST['Button'] ?><?php session_start(); switch(@$_POST['Button']) { ####################################### case "A": $mess = "you have pressed A"; include ("Page.inc"); break; ###################################### case "B": $mess = "you have pressed B"; include ("Page.inc"); break; ######################################## default: $mess = "you have pressed C"; include ("Page.inc"); } ?>