get_popular_links(100); // build popular link report $pop_output = ""; for ($i = 0; $i < count($popular); $i++) { $p = $popular[$i]; $pop_output .= "{$p['visits']}{$p['link']}"; } if ($pop_output != "") { $pop_output = "{$pop_output}
"; } ECHO << Poplink Demo

Popular Outgoing Links

$pop_output END; // create cached version $contents = ob_get_contents(); $fhandle = fopen($filename, "w"); fwrite($fhandle, $contents); fclose($fhandle); // display output ob_end_flush(); ?>