Knowledgebase Portal Home Knowledgebase PHP Toggle Sidebar Articles How do I create my own php.ini file? PHP options can be enabled/disabled within the php.ini file on your web site. You or your web... How do I use PHP 5 and/or PHP 4 on my web site? All files that end with the .php or .php4 extention will be executed under PHP 4, and all files... How do I view the phpinfo() information? 1) Create a file named "phpinfo.php" which contains the below text:<? phpinfo(); ?> 2)... Is register_globals on or off in PHP? We keep register_globals off for security reasons. Since PHP 4.2 register_globals has been off by... Using PHP includes The following is the correct format for using PHP includes: include('/path/to/file/include.php');