mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 23:48:45 +01:00
1515a89e2d
an inspiration. Works OK already on most newish browsers .. see mod/chat/README.txt for details.
24 lines
1.2 KiB
PHP
24 lines
1.2 KiB
PHP
<?php
|
|
include("../config.inc.php");
|
|
include("../functions.inc.php");
|
|
?>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
|
<html>
|
|
<head>
|
|
<title>
|
|
ARSC - ARSC Really Simple Chat
|
|
</title>
|
|
</head>
|
|
<frameset cols="193,*,120" border="0" framespacing="no" frameborder="0" marginwidth="2" marginheight="1">
|
|
<frame src="../shared/roomlist.php?arsc_sid=<?php echo $arsc_sid; ?>" name="roomlist" scrolling="auto" noresize marginwidth="0" marginheight="0">
|
|
<frameset rows="*,40" border="1" framespacing="no" frameborder="0" marginwidth="2" marginheight="1">
|
|
<frame src="chatmsg.php?arsc_sid=<?php echo $arsc_sid; ?>#end" NAME="msg" scrolling="auto" noresize marginwidth="2" marginheight="1">
|
|
<frame src="chatinput.php?arsc_sid=<?php echo $arsc_sid; ?>" name="input" scrolling="no" noresize marginwidth="2" marginheight="1">
|
|
</frameset>
|
|
<frame src="../shared/userlist.php?arsc_sid=<?php echo $arsc_sid; ?>&arsc_enter=true" name="users" scrolling="auto" noresize marginwidth="5" marginheight="5">
|
|
</frameset>
|
|
<noframes>
|
|
Sorry, this version of ARSC needs a browser that understands framesets. We have a Lynx friendly version too.
|
|
</noframes>
|
|
</html>
|