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
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

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.