I was wondering if on a form i could have three buttons.
i.e. <input type="submit" name"Submit" value= <?php $sql = INSERT INTO test (fname,lname,number,phone,address,,,) VALUES ('$fname','$lname',,,,);
$query = mysql_query($sql); ?>
<input tpye="submit" name="Delete" value = <?php $sql Delete from test ..... ?>
and <input type = "submit" name="Update" value= <?php UPDATE employees SET first='$first',last='$last',address='$address',position='$position' WHERE number='number'; ?>
or somehing like that??