They are only available within a class. So you'd have to reference the instance of the object you created.
eg:
PHP Code:
$article = new Article(4);
echo $article->text;
Classes are very powerful if you use them correctly, so I wouldn't ignore them alltogether. Although depending on what types of programs you're developing, you may not [yet] see the need.
-r