????

Your IP : 216.73.216.174


Current Path : /home2/morganrand/www/store/admin/includes/classes/
Upload File :
Current File : /home2/morganrand/www/store/admin/includes/classes/object_info.php

<?php
/*
  $Id$

  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) {
      reset($object_array);
      while (list($key, $value) = each($object_array)) {
        $this->$key = tep_db_prepare_input($value);
      }
    }
  }
?>