<?php /* $Id: object_info.php,v 1.2 2007/03/01 07:19:53 Nicolas Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ class objectInfo { // class constructor function objectInfo($object_array) { $object_array=is_array($object_array) ?$object_array:array($object_array); reset($object_array); while (list($key,$value) =each($object_array)) { $this->$key= tep_db_prepare_input($value); } } } ?>