| 
<?php
/**
 * My Framework : My.Forms
 *
 * LICENCE
 *
 * You are free:
 * to Share ,to copy, distribute and transmit the work to Remix —
 * to adapt the work to make commercial use of the work
 *
 * Under the following conditions:
 * Attribution, You must attribute the work in the manner specified by
 *   the author or licensor (but not in any way that suggests that they
 *   endorse you or your use of the work).
 *
 * Share Alike, If you alter, transform, or build upon
 *     this work, you may distribute the resulting work only under the
 *     same or similar license to this one.
 *
 *
 * @category   My.Forms
 * @package    Extra
 * @copyright  Copyright (c) 2005-2011 Inwebo (http://www.inwebo.net)
 * @license    http://http://creativecommons.org/licenses/by-nc-sa/3.0/
 * @version    $Id:$
 * @link       https://github.com/inwebo/My.Forms
 * @since      File available since Beta 01-10-2011
 */
 function __autoload($class_name) {
 include dirname(__FILE__).'/lib/class.'.strtolower($class_name) . '.php';
 }
 
 |