InterviewSolution
Saved Bookmarks
| 1. |
Your confirmation form submits your choice, via the _______ method, to ________(a) GET index.php(b) GET admin.php(c) POST index.php(d) POST admin.phpThis question was posed to me during an online interview.This interesting question is from Updating and Deleting Entries in portion Objects and Databases in PHP of PHP |
|
Answer» CORRECT choice is (d) POST admin.php Easiest EXPLANATION: To process this, you need to add an ADDITIONAL block of code to the top of admin.php that determines what choices you’ve made and act accordingly. |
|