* Thus wrote Terence ([EMAIL PROTECTED]):
> Dear List,
>
> I've been struggling with this for some time now and can't for the life of
> me figure out why the output is "GeorgeGeorge" and not "GeorgeBush"
>
> class StaffDetails {
>
> var $staff_name;
> var $staff_surname;
>
> function StaffD
On Fri, 31 Oct 2003 11:38:47 +0800, you wrote:
>I've been struggling with this for some time now and can't for the life of
>me figure out why the output is "GeorgeGeorge" and not "GeorgeBush"
> $this->$staff_name="George";
Try this instead
> $this->staff_name="George";
(superfluous $). Same
Dear List,
I've been struggling with this for some time now and can't for the life of
me figure out why the output is "GeorgeGeorge" and not "GeorgeBush"
$staff_name="George";
$this->$staff_surname="Bush";
}
function StaffName() {
echo $this->$staff_name;
}
function StaffSurname() {
ech
3 matches
Mail list logo