Hi,
I have page working on include engine:
<? 
$urls=$id.".php"; 
if(file_exists("$urls")) 
{ 
$file=fopen($urls,"r"); 
while($linia=fgets($file, 99)) 
{ 
echo($linia); // 
} 
fclose($file); //
} 
else{ 
$number = "8";  
include("cutenews/show_news.php");}
?>
I want to put coppermine gallery showing only {GALLERY} into this. I'm green at php and I don't know how to do it  :( Please help me.