Learning PHP and MySQL
Example 05-15 Adding the $age variable to Cat
<?php
class Cat {
// How old the cat is
var $age;
}
?>
Posted by on 08/03 at 08:23 AM
Next entry: Example 05-16 Accessing the $age variable using this-->
Previous entry: Example 05-13 Defining three member functions for Cat