Putting CPG into inc Putting CPG into inc
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Putting CPG into inc

Started by Paulb, March 23, 2005, 05:47:25 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Paulb

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.