Home > PHP & Programming > Quizzes > PHP Programming Basics Practice Test: Updating and Deleting Entries in PHP
PHP Programming Basics Practice Test: Updating and Deleting Entries in PHP
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 0% Most missed: “To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘del…”
In PHP, the Create, Read, Update, and Delete (CRUD) operations are used to communicate with a database using Structured Query Language (SQL). The CRUD operations are: Insert: Inserts a record into a table Update: Modifies an inserted table row Delete: Deletes a record  The steps for performing CRUD operations on a MySQL database using PHP are: Create a connection between the database and your PHP code Create a page to create records Create a page to read records Create a page to update records Create a page to delete records  Examples of deleting data from a table in... Show more
PHP Programming Basics Practice Test: Updating and Deleting Entries in PHP
Time left 00:00
10 Questions

1. When you are building administrative links you’ll need to accept two arguments, which of the following are they?
2. Your confirmation form submits your choice, via the _______ method, to ________
3. To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________
4. The (|/) tells the server to match ___________
5. Your confirmation form submits your choice, via the _______ method, to ________
6. Once your application can generate administrative links, you need to load those links into _________
7. You need to check whether ______ is set, to determine whether you’re editing an entry or creating a new one.
8. When a user confirms that he wishes to delete an entry, that entry’s URL is passed to a function which removes the entry from the __________
9. ([\w-]+) will match ___________
10. To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________