PHP Databases Handling
Which one of the following method is used to retrieve the number of rows affected by an INSERT, UPDATE, or DELETE query?

changed_rows()
affected_rows()
num_rows()
new_rows()

ANSWER DOWNLOAD EXAMIANS APP

PHP Databases Handling
Which one of the following statements is used to create a table?

CREATE table_name (column_name column_type);
CREATE TABLE table_name (column_type column_name);
CREATE TABLE table_name (column_name column_type);
CREATE table_name (column_type column_name);

ANSWER DOWNLOAD EXAMIANS APP