Jump to content

HELP: connect mysql with opp


omar-do

Recommended Posts

I have 2 files :

 

Index.php

 

<?php

 

require_once 'class.php';

//

$db = new db;

$db -> connect('localhost','root','NULL');

 

?>

 

And class.php

 

<?php

class db {

  public $host, $user, $password;

 

 

  public function connect() {

     

      print mysql_connect($this->host,$this->user,$this->password ) or die (mysql_error());

     

  }

 

}

?>

 

Where am i making mistake ?

 

Warning: mysql_connect() [function.mysql-connect]: Access denied for user ''@'localhost' (using password: NO) in C:\server\www\opp\class.php on line 8
Link to comment
Share on other sites

The EXACT same error?  Or now it's saying "access denied for user 'root'@'localhost' (using password: NO)"?

 

If it's exactly the same, your code isn't what you say it is, paste the whole thing again.

 

If it's changed the one I posted above, then your password for root is not "null," you probably just want an empty string ""

 

-Dan

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.