do u mean like these.........
//---------- Page.php -------------------
// prints out which button is press
if(count($_POST) > 0){
if(isset($POST["b1"])) echo "Button1";
if(isset($POST["b2"])) echo "Button2";
if(isset($_POST["b3"])) echo "Button3";
}
<form name="form1" method="post" action="page.php">
// some inputs here..........
<input name="B1" type="submit" id="B1" value="Try">
<input name="B2" type="submit" id="B2" value="Random">
<input name="B3" type="submit" id="B3" value="Save">
</form>
it doesn't work. :-( can u tell me what i'm doing wrong??