Alternatively, you could add hidden elements to each of the forms, like so:
<form action="script.php" method="post">
<input type="hidden" name="action" value="add">
...
</form>
<form action="script.php" method="post">
<input type="hidden" name="action" value="del">
...
</form>
<form action="script.php" method="post">
<input type="hidden" name="action" value="view">
...
</form>
And then you would simply check the value of this hidden element to do different things:
$action = (isset($_POST['action']) ? $_POST['action'] : '');
if($action == 'add') {
// do something
} elseif($action == 'del') {
// do something else
}elseif($action == 'view') {
// yet a different form...
} else {
// err... they did something wrong...
// redisplay form, possibly with error message?
}