예제 #1
0
include_once "engine/templates/header.php";
?>
            </div>
            
    		<div id="content">
                    <?php 
include_once 'engine/shoutbox.engine.php';
$shoutbox = new Shoutbox();
$nbshout = $shoutbox->getNbShout();
?>
                    <div class="chat" data-nb="<?php 
echo $nbshout;
?>
">
                        <?php 
echo $shoutbox->getAllShout();
?>
                    </div>
                    <div class="users">
                        <?php 
include_once 'engine/users.engine.php';
$users = new Users();
$users->getAllStatut();
?>
                    </div>
                    
                    <div class="input-chat">
                        <textarea class="input-large"/></textarea><input type="submit" class="submit-btn" value="Submit">
                    </div>
                </div>