Dette er fordi du opretter en forbindelse ved hjælp af mysqli_
og brug derefter mysql_
for at prøve at hente dit resultat. De er forskellige API'er.
<?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));
Eksempel taget fra PHP-manualen