PDA

View Full Version : Making my own little portal


DrkFusion
08-09-2002, 07:10 PM
Well not really...but how would I make the index page use a specifc template, from another template set, other then the user specified one?...using the eval and dooutput?

-Drk

DrkFusion
08-11-2002, 03:47 AM
Hey chen, can I bump this post :-p

-Drk

Xenon
08-12-2002, 12:41 AM
hmm, you could try this:

before running the gettemplate function add:
$tempid=$templatesetid;
$templatesetid=x; // id of templateset you want to have...
eval...... // gettemplatelines here
$templatesetid=$tempid;

DrkFusion
08-12-2002, 01:01 AM
hmm...thank you!

-Ae