PHP MySQL Database
- ([\w-]+) will match ___________.
-
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.
- The (|/) tells the server to match ___________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
The vertical pipe character (|) is the regular expression equivalent of “or”.
- The URLs in the administrative links won’t mean anything to admin.php unless you modify _________.
-
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.
- Once your application can generate administrative links, you need to load those links into _________.
-
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.
- When you are building administrative links you’ll need to accept two arguments, which of the following are they?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
The current page and URL of the entry you are working with