Quote:
Originally Posted by dano
I really need some help and I am sure its simple. I think I am putting the formats of the threadids and such in wrong. Also, I was not exactly sure where to put the else if stuff as you just said put it in there. Can you help me and just treat me like a dumbass. :nervous:
|
an if - else chain is a way to execute different code under different circumstances.
In this example of external.php we have these options JS, XML,RSS
Code:
if ($_REQUEST['type'] == 'JS' AND $vboptions['externaljs'])
{
//A BUNCH OF CODE
}
else if ($_REQUEST['type'] == 'XML' AND $vboptions['externalxml'])
{
}
else if (($_REQUEST['type'] == 'RSS' OR $_REQUEST['type'] == 'RSS2') AND $vboptions['externalrss'])
{
}
We want to insert that else if block I posted into that structure,
to make it easy... just go to the end of the file, find
Code:
/*======================================================================*\
|| ####################################################################
|| # Downloaded: 22:41, Thu Jan 8th 2004
|| # CVS: $RCSfile: external.php,v $ - $Revision: 1.49 $
|| ####################################################################
\*======================================================================*/
and insert the else if block i posted for external.php right above the big comment block.