Jump to content

Trouble making connection to MYSQL


pherrick

Recommended Posts

I am a PHP beginner  trying to connect to MySQL data base

The following code gives me NO feedback from my browser.

 

<?php

$mysqli = new mysqli("localhost", "root", "password", "test");

if (mysqli_connect_errno()) {

printf("Connect failed: %s\n", mysqli_connect_error());

exit();

} else {

printf("Host information: %s\n", mysqli_get_host_info($mysqli));

}

?>

 

 

Link to comment
https://forums.phpfreaks.com/topic/69143-trouble-making-connection-to-mysql/
Share on other sites

I am not able to use any msqli functions.

I am able to use msql.

 

As far as my connection problem, I found the info about setting up the msql extensions in the php.ini file.  (I found that in FAQ)

So I can successfully connect to MYSQL.  Thanks

 

 

I am now getting more dangerous as each day goes by.  Thanks to all your help.

 

I will look into compiling the msqli into PHP, so I can use the examples in this book I am using.

 

Thanks again.

 

Paul

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.