PDA

View Full Version : [PHP] problema con $this dopo essere passato da php4 a php5


IngegnoMan
17-01-2007, 17:58
ciao a tutti, premetto che sono nuovo al php ( :muro: ) e non ho molta esperienza quindi vi porgo questa domanda:

<?
define('PUN_ROOT', './punbb/');
require PUN_ROOT.'include/common.php';
function logout()
{
mysql_query('DELETE FROM '.$this->db_prefix.'online WHERE username='.$this->pun_user['username']);
pun_setcookie(1, random_pass(8), time() + 31536000);
}
?>

mi da errore alla riga 6 cioč

mysql_query('DELETE FROM '.$this->db_prefix.'online WHERE username='.$this->pun_user['username']);

l'errore č:

Fatal error: Using $this when not in object context in /home/web/***************/config.php on line 6



nessuno mi aiuta a rifarla compatibile php5?