PHP MySQL Database
- Which one of the following is true about the following line – $obj = new ImageHandler(‘/images/’, array(600, 400));
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
If you needed to change the size of your images, you can change the dimensions using the above instantiation of ImageHandler.
- Your confirmation form submits your choice, via the _______ method, to ________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
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.
- To declare the function to confirm the deletion you need to add the code to __________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
functions.inc.php
- To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
In admin.php, you check whether $_GET[‘page’] == ‘delete’, then pass the entry URL to be deleted to a function.
- You need to check whether ______ is set, to determine whether you’re editing an entry or creating a new one.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
If an entry is being edited, you need to load the existing entry data and save each piece in a variable.