Esempio n. 1
0
 function Database()
 {
     // Method : begin
     //Konstruktor
     // ********** DIESE WERTE ANPASSEN **************
     // ********** ADJUST THESE VALUES HERE **********
     $this->host;
     //          <<---------
     $this->password;
     //          <<---------
     $this->user;
     //          <<---------
     $this->database;
     $this->rows;
     // $this->host = "localhost";
     // $this->password = "";
     // $this->user = "******";
     // $this->database = "pnufarm_productosnufarm";
     // $this->rows = 0;
     // **********************************************
     // **********************************************
     DBParameters::construct();
     $this->host = DBParameters::Hostname();
     //          <<---------
     $this->password = DBParameters::Password();
     //          <<---------
     $this->user = DBParameters::username();
     //          <<---------
     $this->database = DBParameters::Dbname();
     $this->rows = 0;
 }