Quote:
Originally Posted by Bellardia
Use php $_GET['do'] and $_GET['action'] to get the query string.
Use an if condition...if ($_GET['do'] == 'something') { DO THIS } else { DO THIS } etc
Of course, this would be done in php.
|
Could you make it in a quote what I should add?
I tried this many times without anything at all working
Quote:
if ($_REQUEST['do'] == 'xxx')
{
eval('print_output("' . fetch_template('TEMPLATE_XXX') . '");');
}
|