objectManager for PHP objectManager.class object insert(object obj)
Description Stores the object.
Parameters .
Return Values object.
Example use
<? Stores the object in the file for the class. Returns the object as it has been given an identifer (OID). This has been auto-incremented by the sytem and must not be changed!require_once ("objectManager.class.php");require_once ("example.class.php");$obMan = new objectManager("example","manager/store/");$example = new example();$example->setName("example1");$example=$obMan->insert($example);?>
