g3radiochris
Mitglied
Hallo,
hab kleines Problem und auch schon überall gesucht.
Folgende Fehlermeldung gibt es:
Mir ist das ganze nicht wirklich klar.
Ich nutze PHP 5, irgendwie soll es da mal auch Probleme wegen dem $this gegeben haben.
Hoffentlich weiß jemand weiter.
Danke und bis bald.
g3radiochris
hab kleines Problem und auch schon überall gesucht.
Folgende Fehlermeldung gibt es:
Code:
Fatal error: Using $this when not in object context in C:\xampplite\htdocs\web\lib\class\webService.class.php on line 15
PHP:
class webService{
public function getWebData($id){
$m1 = mysql_query("SELECT id,adress,de FROM web WHERE id='".mainSecurity::selectEscape($id)."'");
$m2 = mysql_fetch_object($m1);
return $m2;
}
public function getWebStadtStandort($id){
$value = $this->getWebData($id);
return '<div class="location">'.$value-> adress.' - '.$value-> de.'</div> ';
}
public function getIdWeb($id){
return $this->getWebStadtStandort($id);
}
}
Mir ist das ganze nicht wirklich klar.
Ich nutze PHP 5, irgendwie soll es da mal auch Probleme wegen dem $this gegeben haben.
Hoffentlich weiß jemand weiter.
Danke und bis bald.
g3radiochris
Zuletzt bearbeitet: