PHP MySQL Database


  1. Which one of the following is true about the following line – $obj = new ImageHandler(‘/images/’, array(600, 400));











  1. 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.


  1. Your confirmation form submits your choice, via the _______ method, to ________.











  1. 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.



  1. To declare the function to confirm the deletion you need to add the code to __________.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: D

    functions.inc.php


  1. To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________.











  1. 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.



  1. You need to check whether ______ is set, to determine whether you’re editing an entry or creating a new one.











  1. 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.