PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Krish Nimishakavi   Chat   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: This is the first file to be displayed ie. login page
Class: Chat
File based chatting
Author: By
Last change:
Date: 20 years ago
Size: 200 bytes
 

Contents

Class file image Download
<html>
<head><title>Welcome to PHP Chatting</title></head>
<body bgcolor='#002266'>
<br>
<?php
    
require "./chat.php";
    
$_SESSION['chat'] = new chat;
    
$_SESSION['chat']->setup();
?>
<html>