From: Lo?c C. <lo...@us...> - 2001-04-03 20:09:10
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv2906/chat Modified Files: index.php3 Log Message: The first dev. version that works! Still many things to do, of course... Index: index.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/index.php3,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** index.php3 2001/03/29 22:52:17 1.1 --- index.php3 2001/04/03 20:09:06 1.2 *************** *** 69,77 **** // php code here. ! $username = (isset($cookieUsername)) ? $cookieUsername : ''; ! $roomName = (isset($cookieRoom)) ? $cookieRoom : ''; ! $roomType = (isset($cookieRoomType)) ? $cookieRoomType : ''; ! ! pmcStartpageLayout($username, $roomName, $roomType); // You can add php code here, or add html statements before the '</body>' tag. --- 69,73 ---- // php code here. ! pmcStartpageLayout(); // You can add php code here, or add html statements before the '</body>' tag. |