Skip to content
Snippets Groups Projects
chat.php 255 B
Newer Older
Eric Laufer's avatar
1.1
Eric Laufer committed
<?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;
?>