In PHP in order to access MySQL database you will use: mysqlconnect() function mysql_connect() function sql_connect() function mysql-connect() function TRUE ANSWER : ? YOUR ANSWER : ?
Which of the methods are used to manage result sets using both associative and indexed arrays? fetch_array() and fetch_column() get_array() and get_row() fetch_array() and fetch_row() get_array() and get_column() TRUE ANSWER : ? YOUR ANSWER : ?
The (|/) tells the server to match ___________ nothing forward slash either nothing or a forward slash backward slash TRUE ANSWER : ? YOUR ANSWER : ?
Which method retrieves each row from the prepared statement result and assigns the fields to the bound results? row() fetch_row() get_row() fetch() 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? num_rows() changed_rows() new_rows() affected_rows() TRUE ANSWER : ? YOUR ANSWER : ?
To identify entries marked for deletion, you check whether $_GET[‘page’] == ‘delete’ inside __________ index.ini index.php .htaccess admin.php 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 : ?
Once your application can generate administrative links, you need to load those links into _________ php.ini start.php index.php index.ini TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following statements is used to create a table? CREATE table_name (column_type column_name); CREATE TABLE table_name (column_name column_type); CREATE table_name (column_name column_type); CREATE TABLE table_name (column_type column_name); TRUE ANSWER : ? YOUR ANSWER : ?