PHP MySQL Database


  1. ([\w-]+) will match ___________.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: A

    ([\w-]+), will match one or more word characters and/or hyphens—which is what your custom entry URLs consist.


  1. The (|/) tells the server to match ___________.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: B

    The vertical pipe character (|) is the regular expression equivalent of “or”.



  1. The URLs in the administrative links won’t mean anything to admin.php unless you modify _________.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: D

    You need to modify .htaccess with an additional rule that handles URLs passed in a link to admin.php.


  1. Once your application can generate administrative links, you need to load those links into _________.











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: D

    You place your administrative links only on the full display of an entry, so you must place the call to load information from adminLinks() within a conditional statement.



  1. When you are building administrative links you’ll need to accept two arguments, which of the following are they?











  1. View Hint View Answer Discuss in Forum

    NA

    Correct Option: C

    The current page and URL of the entry you are working with