Hi.
I have just started learning PHP along with MySQL.
I am trying to connect to the MySQL DB server but unable to. I have been tryin. Please help. Its urgent cos I shall soon have to work on PHP .
My testing program is as follows :
Please help. I am unable to connect to the MySQL server
I have just started learning PHP along with MySQL.
I am trying to connect to the MySQL DB server but unable to. I have been tryin. Please help. Its urgent cos I shall soon have to work on PHP .
My testing program is as follows :
Code:
<?php $si = function_exists('mysqli_connect'); if($si == 1) { echo 'MySQL is installed <br />'; } else { echo 'Not able to connect'; } ?>
Comment