<?php
/* print page */
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" 
\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
<html xmlns='http://www.w3.org/1999/xhtml' lang='en' xml:lang='en'>
<head>
    <title>Chat - Using jquery (javascript) and php (no database required)! - Version 0.1</title>
    <link rel='stylesheet' href='styles.css' type='text/css' media='screen' />
    <script src='http://code.jquery.com/jquery-latest.js' type='text/javascript'></script>
    <script src='chat.js' type='text/javascript'></script>
</head>
<body>
    <div id='container'>
        <!-- show messages -->
        <div id='chat-messages'>
            Loading messages...
        </div>
        <!-- send message formular -->
        <div id='chat-send'>
            <input type='text' id='send-user' />
            <input type='text' id='send-text' />
            <input type='button' id='send-text-button' value='Send' />
        </div>
        <div id='send-loading'>Loading...</div>
    </div>
</body>
</html>"
;
?>