Does anyone know if there is a way to ignore specific sections of code.
What I'm trying to do is use an if statement that when true will cancel out the code below it up to a certain point.
ie:
if ($whatever){
then don't read this code:
if ($suchandsuch){
echo $somehting
}
}
There is probably a simple answer to this but sometimes the simplest answers are the hardest to see.