This is a very strange problem, we have an online assessment script which takes answers from a form, adds up 4 scales and displays a relevant answer page depending on the levels of the scales, for example:
include 'results' . $scale . '.inc.htm';
so the script will display the relevant include for the results. However I've just had one person say that they had some problems, and it seems that the include part of the script didn't work properly. So for example they had could not find results.inc.htm instead of resultsFOO.inc.htm. But this is only happening on one machine, is there any reason why this would happen?
include 'results' . $scale . '.inc.htm';
so the script will display the relevant include for the results. However I've just had one person say that they had some problems, and it seems that the include part of the script didn't work properly. So for example they had could not find results.inc.htm instead of resultsFOO.inc.htm. But this is only happening on one machine, is there any reason why this would happen?