. */ header("Content-type: application/javascript"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Cache-Control: no-cache"); header("Pragma: no-cache"); require_once("config.php"); require_once("lib/data.php"); // for debug purposes, increases the numbers of data artificially function multiply() { global $data; $c = count($data); for ($j = 0; $j < $c; $j++) { for ($i = 0; $i <10; $i++) { $data[] = $data[$j].$i; } } } $data = data_get(); if (count($data) > 0) { //multiply(); echo('["'.implode('", "', $data).'"]'); } else { echo('[]'); } data_purge();