|
Posted by nephish on 08/06/06 18:32
Hello there,
i am getting to need to make my web stuff more OO.
i have a project at work that we are porting to the internet, and i
started learning php to do so.
the project is now mamoth is size, and code is reused and pasted all
over it. I plan to do a good re-write using better, and cleaner code.
So i want to incorporate some classes.
So i have some questions.
i am writing in eclipse and phpedit on linux.
i wrote a simple class ( by example in a book )
it goes a little something like this:
class Customer
{
var $name;
function get_name()
{
return $this-> name;
}
function set_name($new_name)
{
$this-> name = $new_name;
}
}
my parser complains about field declarations not being declared public,
private, or protected .
what is this talking about ?
another question....
if i create a customer object when say, someone logs into the site. Can
i pass that object to each page in session variables ? like from the
login page, can the user move about the site without me coding the
declarations over and over ?
or is there a better way to go about this ?
still a newbie here.
thanks.
[Back to original message]
|