require_once 'showErrMsg.php';
$_action = (isset($_REQUEST['action'])?$_REQUEST['action']:"");
if($_action!= null&&$_action!=''){
if(function_exists($_action)){
eval("$_action();");
}else{
die(showErrMsg ( "
現在のphp文中にメソッド[".$_action."()]。"));
}
}
?>
function showErrMsg($strMsg){
return "".$strMsg."";
}
? >