require_once '../../util/controller.php';
//PCでない場合
if( $_SESSION["disp_mode"] == "smartp" || isSmartPhone() == 1 )
{
?>
}
else
{
//------------------パスの登録------------------
set_include_path(get_include_path() . PATH_SEPARATOR . '../../util/');
set_include_path(get_include_path() . PATH_SEPARATOR . '../../util/dao/');
set_include_path(get_include_path() . PATH_SEPARATOR . '../../config/');
//----------------------------------------------
include_once("Main_Action.php");
$view = new SmartyFactory();
$request = new Request();
$param_p = $request->getPost();
//テンプレート名設定
//TOPヘッダー
$template = "request_form.tpl";
$smarty = $view->getInstance();
$smarty->assign("request_add" , $param_p["request_add"] );
$smarty->assign("request_job" , $param_p["request_job"] );
$smarty->assign("request_wish" , $param_p["request_wish"] );
$smarty->assign("request_url" , urlencode( $_SERVER["REQUEST_URI"] ) );
$smarty->assign("intFlg2" , c_intRequesTrend );
$smarty->display($template);
}
?>