Page Caching Query
-
Hi,
If I use a Switch statement in PHP:
switch (n) {
case label1:
code to be executed if n=label1;
break;
case label2:
code to be executed if n=label2;
break;
case label3:
code to be executed if n=label3;
break;
default:
code to be executed if n is different from all labels;
}
Will all the codes in my case images will be cached or only one of them?
The Switch Case will get the input from the USER Browser, so the condition is variable.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Page Caching Query’ is closed to new replies.