PDA

View Full Version : Novice php question about pulling templates.


morpheusXIIX
07-16-2008, 12:35 AM
I'm attempting to write some code for a vbadvanced script that will pull the same information the welcome block does. I want it to output to a template I have set in vbulletin, for easier access.

I can pull the info,

I am just not sure how to call the template into that php file to output the data.

Any help is appreciated.

RLShare
07-16-2008, 12:47 AM
eval('print_output("' . fetch_template('YourTemplateName') . '");');

morpheusXIIX
07-16-2008, 01:19 AM
thanks. didn't even think of that.