ऐसा इसलिए है क्योंकि आप mysqli_
. का उपयोग करके एक कनेक्शन बनाते हैं और फिर mysql_
. का उपयोग करें अपना परिणाम प्राप्त करने का प्रयास करने के लिए। वे अलग-अलग एपीआई हैं।
<?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));