<?          /*
 
+-------------------------------------------------------------------------------+
 
|   name Simple Lang Patch                                                      |
 
|   file: langPatch.php                                                         |
 
|   vaersion 2006/feb/07                                                        |
 
|   Released under the terms and conditions of the GNU General Public License   |
 
|   For more details: http://gnu.org                                            |
 
|                                                                               |
 
|   Test on these System Configuration:                                         |
 
|       Apache/2.0.55 (Win32) PHP/5.1.2 + MySQL/5.0.15                          |
 
|       Apache/2.0.52 (Unix)  PHP/4.3.9 + MySQL/4.0.21                          |
 
|       Apache/2.0.52 (Unix)  PHP/5.0.2 + MySQL/4.0.21                          |
 
+-------------------------------------------------------------------------------+
 
        */
 
if (realpath(__FILE__) == realpath($_SERVER['SCRIPT_FILENAME'])) {          #disable direct view of this file
 
        exit('This file can not be accessed directly...');
 
}else{
 
define("_TITLE", "Your template Page");
 
 
define("_TEST01", "Hey, i`m bold now.");
 
define("_TEST02", "Hey, i`m bold too.");
 
 
define("_ExTIME", " seconds");
 
} ?>
 
 
 |