imagine i have the following code
if($var == 12)
{
echo 'blah';
echo 'blah';
echo 'blah';
echo 'blah';
echo 'blah';
echo 'blah';
echo 'blah';
echo 'blah';
echo 'blah';
echo 'blah';
}
else
{
echo 'blah';
}
lets imagine that if $var is 12 the page takes 5 seconds to load. if $var isnt 12 will the page still take 5 seconds to load? I need to know if the unused code in conditionals are still processed, or maybe processed before the conditionals.
thanks