Victor Matherly wrote: > > Hello list, > > I want to create a new object and nest the objects variable in an array of another object. > I think I am going about it the correct way I think you are trying to swat a fly with a nuclear missle. in practice abstracting an HTML table into a big collection of objects is total overkill (although it might make an interesting accademic introduction into OO coding) ... > > class htmlTableCell { > var $cell_width; > var $cell_height; > var $cell_colspan; > var $cell_rowspan; > var $css_class; > var $cell_content; > var $cell_name; > > > function __construct($content = " "){ > > $this->cell_content = $content; > > > }// end construct > > function setContent($content){ > $this->cell_content = $content; > > }//end setContent function > > function setName($name){ > $this->cell_name = $name; > > }//end setContent function > > > function getContent(){ > return $this->cell_content; > > }//end setContent function > > } //end TableCell class > > > > > > > ?> > > > > > > > Victor J. Matherly > Technical Services > Wave Communications, Inc > http://www.wave-communications.com > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php