nomadsoul Posted March 22, 2009 Report Posted March 22, 2009 <? $stefan = new person(); $jimmy = new person; $stefan->set_name("Stefan Mischook"); $jimmy->set_name("Nick Waddles"); echo "Stefan's full name: " . $stefan->get_name(); echo "Nick's full name: " . $jimmy->get_name(); ?> Quote
monkeysaurus Posted March 22, 2009 Report Posted March 22, 2009 (edited) Hi, Your set_name function is missing a closing bracket. class_lib.php should be: <? class person { var $name; function set_name($new_name) { $this->name = $new_name; } function get_name() { return $this->name; } } ?> If you're still having problems, I would recommend replacing <? with <?php. This is more widely compatible with a variety of servers. Edited March 22, 2009 by monkeysaurus Quote
nomadsoul Posted March 22, 2009 Author Report Posted March 22, 2009 Thanks Monkeysaurus that did the trick. Caught by the braket again. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.