/
home2
/
reumatologia
/
public_html
/
Upload File
HOME
<?php function __autoload($ClassName) { $ClassFile = 'class.' . strtolower($ClassName) . '.php'; $Path = '../library/'; if (!(file_exists($Path . $ClassFile))) { $Path = 'library/'; if (!(file_exists($Path . $ClassFile))) return false; } require_once($Path . $ClassFile); if (!(class_exists($ClassName))) return false; return true; } ?>