php strict 적용

This commit is contained in:
chicpro
2013-04-30 10:29:18 +09:00
parent 05e26e16e0
commit 2fd9b1942b
17 changed files with 286 additions and 286 deletions

View File

@ -1,4 +1,4 @@
<?
<?php
$sub_menu = '500120';
include_once('./_common.php');
@ -45,9 +45,9 @@ include_once (G4_ADMIN_PATH.'/admin.head.php');
<option value="">전체</option>
</select>
<label for="fr_date" class="sound_only">기간 시작일</label>
<input type="text" name="fr_date" value="<?=date("Ymd");?>" id="fr_date" class="frm_input" size="10" maxlength="8"> 부터
<input type="text" name="fr_date" value="<?php echo date("Ymd"); ?>" id="fr_date" class="frm_input" size="10" maxlength="8"> 부터
<label for="to_date" class="sound_only">기간 종료일</label>
<input type="text" name="to_date" value="<?=date("Ymd");?>" id="to_date" class="frm_input" size="10" maxlength="8"> 까지
<input type="text" name="to_date" value="<?php echo date("Ymd"); ?>" id="to_date" class="frm_input" size="10" maxlength="8"> 까지
<button type="submit" class="btn_frmline">출력 (새창)</button>
</div>
@ -105,6 +105,6 @@ function forderprintcheck(f)
}
</script>
<?
<?php
include_once (G4_ADMIN_PATH.'/admin.tail.php');
?>