Theme question Theme question
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Theme question

Started by Maarika, June 28, 2006, 07:08:41 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Maarika

Hello! I've installed Coppermine on my site and it's located in the same folder as my site's PHP files.
So now what I want to do is, to integrate those PHP files to Coppermine's template. How is that done? I don't know how to code PHP.
Copying the code from template.html and using it in my php files doesn't work obviously. >.<
Thank you if anyone can help.

Nibbler

Put your code in a skeleton file, like this


<?php

define
('IN_COPPERMINE'true);
require(
'include/init.inc.php');

pageheader('Your title');

/* insert php code here */

pagefooter();

?>


Maarika

Thank you very much for the quick reply.
I was trying out different includes and requires but none of them worked.

Thanks again! It's working now.