makeGallery($codeUrl);
if(!$gallery)
echo "Gallery not found";
else{
ob_start();
echo $gallery;
$buffer = ob_get_contents();
ob_end_flush();
$id = str_replace("/", "777", $_GET["galid"]);
$fp = fopen('cache/index_' . $id . '.cache', 'w');
fwrite($fp, $buffer);
fclose($fp);
}
?>