Điều này là do bạn tạo kết nối bằng mysqli_
và sau đó sử dụng mysql_
để cố gắng lấy kết quả của bạn. Chúng là các API khác nhau.
<?php
/* You should enable error reporting for mysqli before attempting to make a connection */
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = mysqli_connect('localhost', 'my_user', 'my_password', 'my_db');
/* Set the desired charset after establishing a connection */
mysqli_set_charset($mysqli, 'utf8mb4');
printf("Success... %s\n", mysqli_get_host_info($mysqli));
Ví dụ lấy từ hướng dẫn sử dụng PHP