php strict 반영

This commit is contained in:
chicpro
2013-04-29 16:18:05 +09:00
parent d87fb5b0d5
commit c7ab38f91c
63 changed files with 493 additions and 493 deletions

View File

@ -1,4 +1,4 @@
<?
<?php
include_once('./_common.php');
$sql = " select * from {$g4['shop_new_win_table']} where nw_id = '$nw_id' ";
@ -13,26 +13,26 @@ include_once(G4_PATH.'/head.sub.php');
?>
<script language="JavaScript">
function div_close_<? echo $nw['nw_id'] ?>()
function div_close_<?php echo $nw['nw_id']; ?>()
{
if (check_notice_<? echo $nw['nw_id'] ?>.checked == true) {
set_cookie("ck_notice_<? echo $nw[nw_id] ?>", "1" , <? echo $nw['nw_disable_hours'] ?>);
if (check_notice_<?php echo $nw['nw_id']; ?>.checked == true) {
set_cookie("ck_notice_<?php echo $nw['nw_id']; ?>", "1" , <?php echo $nw['nw_disable_hours']; ?>);
}
window.close();
}
</script>
<div id="div_notice_<? echo $nw['nw_id'] ?>">
<table width="<? echo $nw['nw_width'] ?>" height="<? echo $nw['nw_height'] ?>" cellpadding="0" cellspacing="0">
<div id="div_notice_<?php echo $nw['nw_id']; ?>">
<table width="<?php echo $nw['nw_width']; ?>" height="<?php echo $nw['nw_height']; ?>" cellpadding="0" cellspacing="0">
<tr>
<td valign=top><?=conv_content($nw['nw_content'], $nw['nw_content_html']);?></td>
<td valign=top><?php echo conv_content($nw['nw_content'], $nw['nw_content_html']); ?></td>
</tr>
<tr>
<td height=30 align=center><input type=checkbox id='check_notice_<?=$nw['nw_id']?>' name='check_notice_<?=$nw['nw_id']?>' value='1' onclick="div_close_<? echo $nw['nw_id'] ?>();"><font color="<? echo $nw['nw_font_color'] ?>">&nbsp;<label for='check_notice_<?=$nw['nw_id']?>'>오늘 하루 이창을 열지 않습니다.</label><!-- <? echo $nw[nw_disable_hours] ?> 시간동안 이창을 다시 띄우지 않겠습니다. --></font></td>
<td height=30 align=center><input type=checkbox id='check_notice_<?php echo $nw['nw_id']; ?>' name='check_notice_<?php echo $nw['nw_id']; ?>' value='1' onclick="div_close_<?php echo $nw['nw_id']; ?>();"><font color="<?php echo $nw['nw_font_color']; ?>">&nbsp;<label for='check_notice_<?php echo $nw['nw_id']; ?>'>오늘 하루 이창을 열지 않습니다.</label><!-- <?php echo $nw[nw_disable_hours]; ?> 시간동안 이창을 다시 띄우지 않겠습니다. --></font></td>
</tr>
</table>
</div>
<?
<?php
include_once(G4_PATH.'/tail.sub.php');
?>