* 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"
>
> <?php
> class StaffDetails {
>
> var $staff_name;
> var $staff_surname;
>
> function StaffDetails() {
>
> $this->$staff_name="George";
syntax is:
$this->staff_name="George";
(note: no $ before the class variable)
Curt
--
"My PHP key is worn out"
PHP List stats since 1997:
http://zirzow.dyndns.org/html/mlists/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php