-
Eric Laufer authored
Das ist der erste Upload des neuen VMS-SUEE
26044b8a
chat.php 255 B
<?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;
?>