try using a switch statement
the typical if/elseif/else statement should be this
if () {
} else if () {
} else {
}
No more, as PHP must check each result individually.
Here is a small example of using the array feature i said
$pages = array(1 => 'Page01.php', 2 => 'Page02.php', 3 => 'Page03.php');
$default = 'Page01.php';
include in_array($_GET['go'], $pages) ? $pages[$_GET['go']] : $default;