sasam1400
03-19-2008, 09:14 PM
Hi
i get this message and i don't knw what to do... please help.
this is the code:
class CredentialsHandler
{
var $username;
var $password;
function setUsername($username)
{
$this->username = $username;
}
function setPassword($password)
{
$this->password = $password;
}
function getUsername()
{
return $this->username;
}
function getPassword()
{
return $this->password;
}
}
$credentialsHandler->setUsername('sasam');
$credentialsHandler->setPassword('12345');
I always get message saying:
Fatal error: Call to a member function on a non-object in c:\program files\easyphp1-8\www\mgw\servis.php on line 75
(line 75 is the bold one)
Any ideas?
i get this message and i don't knw what to do... please help.
this is the code:
class CredentialsHandler
{
var $username;
var $password;
function setUsername($username)
{
$this->username = $username;
}
function setPassword($password)
{
$this->password = $password;
}
function getUsername()
{
return $this->username;
}
function getPassword()
{
return $this->password;
}
}
$credentialsHandler->setUsername('sasam');
$credentialsHandler->setPassword('12345');
I always get message saying:
Fatal error: Call to a member function on a non-object in c:\program files\easyphp1-8\www\mgw\servis.php on line 75
(line 75 is the bold one)
Any ideas?