I get this error
PHP Fatal error: Call to undefined function mysqli_connect() in /home/webdesignsolutio/public_html/process/conn.php on line 28
when my hosting is blank and i am testing for MySQLi test. then its show the result mysqli is available here , and when i host my website and import database there its show mysqli connect error, after installing database and website files there and page show blank without any connection
so when i move to go-daddy hosting and upload that and do same thing its running
i didn't understand that, whats a problem with that ?? Help me
For Testing of Mysqli i put this code :-
/* to check mysqli on your hosting / WHM / Cpanel */
/* Code start here */
<?php
if (!function_exists('mysqli_init') && !extension_loaded('mysqli')) {
echo 'no mysqli :(';
} else {
echo 'Yeah !!! we gots it :)';
}
?>
/* Code End here */
Before import the database and upload the website
after import the database and upload the website