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,13 +1,13 @@
<?
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>
<br>
<table width=98% cellpadding=0 cellspacing=0 align=center>
<tr>
<td width=50%>총 <span class=point><b><? echo number_format($total_count) ?></b></span>개의 상품이 있습니다.</td>
<td width=50%>총 <span class=point><b><?php echo number_format($total_count); ?></b></span>개의 상품이 있습니다.</td>
<td width=50% align=right style='padding-top:3px; padding-bottom:3px;'>
<select id=it_sort name=sort onchange="if (this.value=='') return; document.location = '<? echo "{$_SERVER['PHP_SELF']}?ca_id=$ca_id&skin=$skin&ev_id=$ev_id&sort=" ?>'+this.value;" class=small>
<select id=it_sort name=sort onchange="if (this.value=='') return; document.location = '<?php echo "{$_SERVER['PHP_SELF']}?ca_id=$ca_id&skin=$skin&ev_id=$ev_id&sort="; ?>'+this.value;" class=small>
<option value=''>출력 순서
<option value=''>---------
<option value='it_amount asc'>낮은가격순
@ -21,9 +21,9 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
</select>
</td>
</tr>
<tr><td colspan="2" background='<?=G4_SHOP_URL?>/img/line_h.gif' height=1></td></tr>
<tr><td colspan="2" background='<?php echo G4_SHOP_URL; ?>/img/line_h.gif' height=1></td></tr>
</table>
<script language='JavaScript'>
document.getElementById('it_sort').value="<?=$sort?>";
document.getElementById('it_sort').value="<?php echo $sort; ?>";
</script>