Hi: problem is like that: <form method="post" action="delete.php"> .... <input type="checkbox"........//code </form> if i want to take two actions(delete.php and edit.php) within the same form How can achieve that? thanks
it really depends on what you want to do, if you have a drop down box selecting delete or edit, then you can put the contents of delete.php and edit.php into the one php script, and then do an if statement to do the delete task if delete is chosen, else do the edit task if edit is chosen