welo,
Put the HTML you need for that page's 'do' statement in avariable like this:
PHP Code:
if ($_REQUEST['do'] == 'agree_standard')
{
eval('$whatever = "' . fetch_template('agree_standard') . '";');
eval('print_output("' . fetch_template('AGREEMENT') . '");');
}
if ($_REQUEST['do'] == 'agree_special')
{
eval('$whatever = "' . fetch_template('agree_special') . '";');
eval('print_output("' . fetch_template('AGREEMENT') . '");');
}
else
{
eval('$whatever = "' . fetch_template('default_do_template') . '";');
eval('print_output("' . fetch_template('AGREEMENT') . '");');
}
Then add $whatever in your AGREEMENT template where you want the 'do' stuff to appear.