switch($_GET['name']) {
default:
include('Connor.htm');
break;
case "Gisselle":
include('Gisselle.htm');
break;
case "Kayla":
include('Kayla.htm');
break;
case "Kristina":
include('Kristina.htm');
break;
case "Lindsay":
include('Lindsay.htm');
break;
case "Madison":
include('Madison.htm');
break;
case "Natasha":
include('Natasha.htm');
break;
case "Owen":
include('Owen.htm');
break;
case "Savannah":
include('Savannah.htm');
break;
}
?>