Skip to content
Snippets Groups Projects
Commit 61f0bede authored by Eric Laufer's avatar Eric Laufer
Browse files

Update chat.php

parent e87fa7c1
No related merge requests found
<?php
require("datenbank.inc.php");
require_once("class/chat.class.php");
$id = intval( $_GET['lastTimeID'] );
$jsonData = chatClass::getRestChatLines($id);
//db_query("INSERT INTO json (text) VALUES ('". $jsonData ."')");
print $jsonData;
<?php
require("datenbank.inc.php");
require_once("class/chat.class.php");
$id = intval( $_GET['lastTimeID'] );
$jsonData = chatClass::getRestChatLines($id);
print $jsonData;
?>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment