> Do you define the class?: > > class help.Search { > } No..,
In your example you are defining the search class in the Help namespace, just like you would in ActionScript. I don't think you can do that in php. You would just use; class Search{ // do stuff here } You can extend the class using; class subSearch extends Search{ // do stuff here } alex hogan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php