2019-02-12から1日間の記事一覧

VBA 文字列 チェック 色を付ける

VBA

Sub color() 'D列に 文字列 男の子 => 隣のC列を「青」 女の子だったら 「赤」 Dim i As Long For i = 2 To Cells(Rows.Count, 1).End(xlUp).Row If Range("D" & i).Value = "男の子" Then Range("C" & i).Interior.ColorIndex = 5 '青 ElseIf Range("D" & i…

PHP clone 日付オブジェクト 作成

/*------- 当月のクローンオブジェクト 作成 ---------*/ /*---- 当月 タイトル表示 -----*/$dt = clone $thisMonth;$yy_m = $dt->format('Y年m月'); /*---- 翌月 タイトル表示 -----*/$dt = clone $thisMonth;$next_t = $dt->modify('+1 month')->format('Y…

PHP mysql 日付検索 $_GET

PHP

/*----------- パラメータを GET する ---------------*/ if(isset($_GET["t"])) { $ymd = basename($_GET["t"]); // URL パラメーター t 以降の日付の数値が入る $year = substr($ymd, 0,4); $month = substr($ymd,4, 2); $day = substr($ymd,6, 2); $disp_…

PHP mysql 日付分割 フォーマット(Ymd)$_GET パラメータ

PHP

/*----------- パラメータを GET する ---------------*/ if(isset($_GET["t"])) { $ymd = basename($_GET["t"]); // パラメーター t 以降の日付の数値が入る $year = substr($ymd, 0,4); $month = substr($ymd,4, 2); $day = substr($ymd,6, 2); $disp_ymd …