Re: how to assign a value to a variable inside a class

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



chris smith schrieb:
On 4/11/06, Merlin <news.groups@xxxxxx> wrote:
Hi there,

no much simpler. I do not need to assign the value from outside the class. This
is just inside the class. I have the login data for a database saved in a file
and would like to use simply the variable $DB_login inside this class.

This does not work:

$this->db_username = $DB_login;

That's the right way to do it.

What are you seeing?

--
Postgresql & php tutorials
http://www.designmagick.com/

The following code:
    class search_helper extends AjaxACApplication
    {
	var $db_username;
	$this->db_username	= $DB_LOGIN;		

...does bring following error message:
Parse error: syntax error, unexpected T_VARIABLE, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in file.inc on line 39

Line 39 is the one with $this

Any suggestions?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux