Thanks for that, I suppose that will work for a form with only one submit, but I rely mostly on forms with say a 'submit' and 'delete' button.
The problem with above is that whenever the form is submitted, $action="go" will always be passed.
I still need some way of passing a value for the submit to my scripts, which usually looks something like:
if ($action=="go") {
}elseif ($action=="delete") {
}else{
}
Does anybody have any other ideas?