Based on your comment you actually need to find out if a button was pressed. Check the example below.
Here is a simple form with a username input and three buttons to perform a variety of actions on that username:
<form action="next_page.php" method="post">
<input type="text" name="myname" />
<input type="submit" name="get_myname" value="Give my name back" />
<input type="submit" name="rand_name" value="I will give you some name" />
<input type="submit" name="color_name" value="Your name as a rainbow" />
</form>
Once one of the submit buttons is pressed, we go to next_page.php and check to see which one it was and perform an action based on that.
<?php
//this is next_page.php
if (isset($_POST['get_myname'])) {
//echo user's name to screen
} elseif ( isset($_POST['rand_name']) ) {
//echo a random name
} elseif ( isset($_POST['color_name']) ) {
//change every letter to a different colour
} else {
//nothing to do here, just nice to have a comment letting you know
}
?>