View Single Post
Old 08-19-2005, 04:06 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,446
sde is on a distinguished road
why not just check for the value of the button name instead?

PHP Code:
<?
if($_POST['edit']){
  
// then do some edit stuff
}

if(
$_POST['upload']){
  
// then do some upload stuff
}
?>
__________________
Mike
sde is offline   Reply With Quote