From: <dts...@us...> - 2003-05-27 14:40:17
|
Update of /cvsroot/phpwebsite-comm/modules/contacts In directory sc8-pr-cvs1:/tmp/cvs-serv29728 Added Files: index.php Log Message: Initial checkin --- NEW FILE: index.php --- <?php /** * @version $Id: index.php,v 1.1 2003/05/27 14:40:14 dtseiler Exp $ * @author Don Seiler <do...@NO...> */ include("conf/contacts.php"); if(!isset($_SESSION["CONTACTS_Manager"])) $_SESSION["CONTACTS_Manager"] = new CONTACTS_Manager; if(isset($_REQUEST["CONTACTS_MAN_OP"])) { $_SESSION["CONTACTS_Manager"]->managerAction(); $_SESSION["CONTACTS_Manager"]->action(); } if(isset($_REQUEST["CONTACTS_OP"]) && isset($_SESSION["CONTACTS_Manager"]->message)) $_SESSION["CONTACTS_Manager"]->message->action(); ?> |