. */ 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/macs.php"); // for debug purposes, increases the numbers of macs artificially function multiply() { global $macs; $c = count($macs); for ($j = 0; $j < $c; $j++) { for ($i = 0; $i <10; $i++) { $macs[] = $macs[$j].$i; } } } $macs = macs_get(); if (count($macs) > 0) { //multiply(); echo('["'.implode('", "', $macs).'"]'); } else { echo('[]'); } macs_purge();