Quote:
Originally Posted by Gunderak
Are you talking about the serverside and clientside checks?
For triggering things?
|
I'm talking about
:
PHP Code:
if(params[0] == something){
}
if(params[0] == somethingelse){
}
Which occurs both serverside and clientside.
If the parameter is something, there is then no need to check if it is somethingelse. You should either use a switch statement or a return; within the bracket.