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
https://forums.phpfreaks.com/topic/243845-help-connect-mysql-with-opp/
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

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.