当選者には応募の際に記載して頂いたメールアドレスにご連絡をさせて頂きます。
応募〆切:5/31(木)〜18:00
/* 投稿フォームシステム 更新:2011/02/24 */ //------------------------------------------------------------------// // settings require_once ("/export/www/otomate/home/lib/form.php"); $this_pg = $_SERVER['PHP_SELF']; $this_host = $_SERVER["SERVER_NAME"]; $g_title = "稲船敬二の超次元人生相談"; $file_path = "aaa.dat"; //保存するファイル名 //最初の場所で表示する文字 $fast_step_msg = "バナーキャンペーン登録フォーム"; //最後の「戻る」ボタンのURL $ret_url = "http://www.otomate.jp/lgs/"; $colorA = "9999cc"; //最初の場所で表示する文字 $fast_step_msg = "dummy"; //メールのfrom $from = "ideaf@ideaf.co.jp"; //メールのfrom表示名 $from_name = "dummy"; //メールのサブジェクト $subject = "dummy"; //メールメッセージ(NAME がハンドルネームに置き換えられます。) $message = 'dummy'; //------------------------------------------------------------------// // main $chk_flg = $_POST['check_flg']; if(!$chk_flg) $chk_flg = $_GET['step']; echo_html_head(); switch($chk_flg){ case 1: echo_html_second_step(); break; case 2: echo_html_third_step(); break; case "end": echo_html_end_step(); break; default : echo_html_fast_step(); break; } echo_html_end(); //------------------------------------------------------------------// // functions function echo_html_head( $title /* char */) { global $this_pg,$this_host,$g_title; if(!$title){ $title=$g_title; } echo <<