From: <ope...@li...> - 2002-06-27 05:30:26
|
Update of /cvsroot/openposs/Server In directory usw-pr-cvs1:/tmp/cvs-serv13396 Added Files: install.php Log Message: Added the beginnings of the installation script. --- NEW FILE: install.php --- <?php /****************************************************************************** * * * File Name: /install.php * * * * Created : Jun, 25 2001 * * * * Purpose : Provide the installation interface to the openPOS Server. * * * *----------------------------------------------------------------------------* * Change Log * *----------------------------------------------------------------------------* * Date | Description * * -------------+------------------------------------------------------------ * * Jun 25, 2002 | Initial Coding. * ******************************************************************************/ /****************************************************************************** * System Includes * ******************************************************************************/ include_once("database.php"); if (!DBInit()) { die("Unable to connect to the database."); } $OutputLang=$HTTP_GET_VARS["lang"]; $Action=$HTTP_GET_VARS["action"]; if (!isset($Action)) { $Action="none"; } if (!isset($OutputLang)) { $OutputLang="eng"; } ?> |