Login   Register  
PHP Classes
elePHPant
Icontem

File: admin/chat.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Miguel Villaseņor  >  MKCS PHP Support Chat  >  admin/chat.php  >  Download  
File: admin/chat.php
Role: Example script
Content type: text/plain
Description: Example script
Class: MKCS PHP Support Chat
Chat with clients of a support site
Author: By
Last change:
Date: 2013-09-17 12:08
Size: 2,454 bytes
 

Contents

Class file image Download
<?php 
require_once 'session_initializer.php';
require_once 
__DIR__.'/../classes/Chat.php';
require_once 
__DIR__.'/../classes/User.php';
if(!isset(
$_SESSION['user_id']))
    
header('Location: login.php ');

if(!isset(
$_GET['id']))
    
header('Location: index.php ');

$user=User::getUser($_SESSION['user_id']);
if(!
$user->hasChat($_GET['id'])){
    
$chat=Chat::getExistingChat($_GET['id']);
    
$chat->setUser($_SESSION['user_id']);
}


$_SESSION['last_update']="0000-00-00 00:00:00";
?>

<!DOCTYPE html>
<html lang="es">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css">
        <link rel="stylesheet" href="../css/main.css">
        <script src="../js/jquery.min.js"></script>
        <script src="../bootstrap/js/bootstrap.min.js"></script>
        <script src="../js/main.js"></script>
        <title>Simple Support Chat</title>
        
    </head>
    <body>
        <div class="container">
            
            <div class="well" id="main">
                <center><h1>Welcome</h1></center>
                
                <a href="end.php?id=<?php echo $_GET['id'?>" class="btn btn-danger">End Chat</a>
                <a href="index.php" class="btn btn-primary">Go Home</a>
                <br>
                <br>
                <div id="messages" class="well ">
                    <div id="last"></div>
                    
                </div>
                <form onsubmit="sendUserMessage(<?php echo $_GET['id'?>); return false" style="text-align: right" role="form" method="post">
                    <div class="form-group">
                        <label class="sr-only" for="message">Message</label>
                        <input autocomplete="off" type="text" class=" form-control " id="message" placeholder="Enter your message">
                    </div>
                    <button type="submit" class="btn btn-primary">Send</button>
                </form>
                </div>
                
                </div>
            
            
        </div>
        <br />
        <?php if(isset($_SESSION['user_id'])){?>
        <script type="text/javascript">
            $(function(){
                window.setInterval(function(){ getMessagesUser('<?php echo $_SESSION['last_update'?>',<?php echo $_GET['id'?>) },1000);
            });
        </script>
        <?php ?>
    </body>
</html>