How do you Embed Gallery into a site that assembles the page
[Syntax]
Joined: 2002-10-26
Posts: 20 |
Posted: Sat, 2002-10-26 23:51 |
Here is what I found.. They insert this line into the init.php They create new wrapper.header and wrapper.footer files.. case "sitename": and something similar in the footer.. This works fine and dandy.. site comes up.. I had to manually insert the css code into the top of my page, Can someone tell me what to add to my header or how I can do this... |
|
Posts: 172
To make it work, you need to:
CHANGE from:
case "sitename":
include('../../header.php');
include('../../maintop.php');
break;
TO:
<? include('http://www.domain.com/header.php'); ?>
<? include('http://www.domain.com/maintop.php'); ?>
Then it works that way