[PHP] Fatal error: Call to a member function Query()

username90

Nuovo Utente
27 Ott 2016
29
0
1
34
Ciao ragazzi, ho un problema e non capisco dove sbaglio. Allora ho creato una classe in file php e all'interno di questa classe ho dichiarato diverse variabili tra cui queste due:
PHP:
var $qid;
var $Error;
nella classe ho definito vari metodi tra cui questo:
PHP:
public function Query($query)
    {
        $this->qid = mysql_query($query);
        if (!$this->qid) {
            $this->Error .= mysql_error() . ",<br> $query \n";
            $this->Error();
        }
        return $this->qid;
    }
poi ho creato il file composizione.php che è il seguente:
PHP:
<?php
class composizione
{
    var $ricetta;
    var $ingrediente;
    var $quantita;
    var $db;

    public function composizone($db)
    {
        $this->ricetta=0;
        $this->ingrediente=0;
        $this->quantita=0;
        $this->db=$db;
    }
 
    public function aggiungi($ingrediente, $ricetta, $quantita)
    {
        $query="INSERT INTO composizione (ingrediente, ricetta, quantita')
               VALUES (".$ingrediente.", ".$ricetta.", ".$quantita.")";
        $this->db->Query($query);
    }

}
?>
nel file composizione.php mi viene dato questo errore Fatal error: Call to a member function Query() on null sulla riga 21, che sarebbe $this->db->Query($query);

Cosa sbaglio? Non riesco a trovare l'errore.
 
Ultima modifica di un moderatore:
Ciao, l'istanza della classe come gliela passi ?
se cosi
PHP:
$Class = new composizione($db);
devi crearti il costruttore
PHP:
public function __construct($db) {
        $this->db = $db;
    }
 

Discussioni simili