Yeah, go with the switch if you find yourself going elseif($thesamething==over and over)
Less typing and fewer chances for typos, for one thing 🙂
switch($menulink)
{
case 'Search': include("search.php");
break;
case 'View': include("view.php");
break;
default: echo "working";
}