Offcourse you can. Just use put the variables in the Edit and Delete link. For example:
edit:
<a href="yourlink.php?edit=[orderID]">Edit</a>
delete:
<a href="yourlink.php?delete=[orderID]">Edit</a>
[orderID] you replace with the actual order id.
Now in yourlink.php you can access those easily with $GET['edit'] and $GET['delete']
if (!empty($_GET['delete'])) {
// Do the deletion
}
Be careful with variables coming from url so make proper checks to them to eliminate sql injections etc.