best way to secure this
We have a few customers on our servers who use code similar to this
PHP Code:
<?php
if (isset($x)) {
include($x);
} else {
include('main.htm');
}
?>
What's the best way to secure against that? Is their anyway to secure against it short of changing the code?