I'm teaching myself php & mysql. I understand most of what I read and see in downloaded scripts but this has me stumped:
Here is part of sample code from hotscripts
I understand this
var $HOST = "localhost";
var $USERNAME = "root";
var $PASSWORD = "";
var $DBNAME = "test";
Here is more code from the same script
I don't understand this
$connection = mysql_connect($this->HOST, $this->USERNAME, $this->PASSWORD);
What does the 'this->' do to the variable name when it is used in the mysql_connect function?
jerry