Which of the methods are used to manage result sets using both associative and indexed arrays? fetch_array() and fetch_row() get_array() and get_column() fetch_array() and fetch_column() get_array() and get_row() TRUE ANSWER : ? YOUR ANSWER : ?
Once your application can generate administrative links, you need to load those links into _________ index.ini index.php start.php php.ini TRUE ANSWER : ? YOUR ANSWER : ?
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 __________ database admin.php index.php function.inc.php TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements instantiates the mysqli class? $mysqli = new mysqli() mysqli = new mysqli() $mysqli->new.mysqli() mysqli->new.mysqli() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following method is used to retrieve the number of rows affected by an INSERT, UPDATE, or DELETE query? new_rows() changed_rows() num_rows() affected_rows() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements can be used to select the database? mysqli->select_db(‘databasename’); $mysqli->select_db(‘databasename’); mysqli=select_db(‘databasename’); $mysqli=select_db(‘databasename’); TRUE ANSWER : ? YOUR ANSWER : ?
In PHP in order to access MySQL database you will use: mysql_connect() function mysqlconnect() function mysql-connect() function sql_connect() function TRUE ANSWER : ? YOUR ANSWER : ?
When you are building administrative links you’ll need to accept two arguments, which of the following are they? URL of previous entry and previous page The current page and previous page The current page and URL of the entry you are working with URL of previous entry and URL of the entry you are working with TRUE ANSWER : ? YOUR ANSWER : ?
Which method returns the error code generated from the execution of the last MySQL function? errornumber() errno() errnumber() errorno() TRUE ANSWER : ? YOUR ANSWER : ?