Log in

View Full Version : guest questions


under2233
04-09-2004, 01:51 PM
Hi all,

I face difficulty when I start coding :( so here are my queries ..

1- How can I know all the variables that can be used in the template or in a php file such as $bbuserinfo[usergroupid]

2- In the templates I noticed that u can use if statments with conditions ... How do I know all the conditions that can be used or if they are based on variables then answer 1 will solve it.

3- How do I fetch the header and footer template in a php file..



Thx

under2233
04-10-2004, 02:32 AM
up :(

under2233
04-11-2004, 12:34 PM
up

under2233
04-13-2004, 11:29 PM
up

Scrub
04-14-2004, 12:19 AM
1. Basically almost anything in the user table in the database can be made in a if statement. I belive, but do not quote me.

3. For templates, $header and $footer will work.

To call the header in a php file, just put this enar the top of the file somewhere.
eval('$header = "' . fetch_template('header') . '";');

Should work. Hopefully someone with better knowledge can answer these better. :)

Zachery
04-14-2004, 01:55 AM
1. Basically almost anything in the user table in the database can be made in a if statement. I belive, but do not quote me.

3. For templates, $header and $footer will work.

To call the header in a php file, just put this enar the top of the file somewhere.
eval('$header = "' . fetch_template('header') . '";');

Should work. Hopefully someone with better knowledge can answer these better. :)
You dont need to eval the header template if you require global

Scrub
04-14-2004, 01:47 PM
Really? LOL! Time to go remove it from some scripts then. :p

under2233
04-15-2004, 12:29 PM
Thx guys ..

But how do we know all the variables that are available for us to use in a template or a php file?