php strict 적용

This commit is contained in:
chicpro
2013-05-02 13:37:39 +09:00
parent b3f2c6086d
commit ed48dee9e0
21 changed files with 29 additions and 29 deletions

View File

@ -71,7 +71,7 @@ th,td {font-family:굴림; font-size:10pt ; height:15pt}
</head>
<body>
<p align=center>상품수 : <?=number_format($total_count)?> 개
<p align=center>상품수 : <?php echo number_format($total_count); ?> 개
<table border="0" cellspacing="1" cellpadding="5" bgcolor="black" width="90%" align='center'>
<tr bgcolor="#ededed" align=center>
@ -86,7 +86,7 @@ th,td {font-family:굴림; font-size:10pt ; height:15pt}
<td>제조사</td>
<td>상품코드</td>
</tr>
<?
<?php
// 전체 페이지 계산
$total_page = ceil($total_count / $page_rows);
// 페이지가 없으면 첫 페이지 (1 페이지)
@ -139,7 +139,7 @@ for ($i=0; $row=mysql_fetch_array($result); $i++)
</table>
<p align=center>
<?=paging(1000, $page, $total_page, "./enuri.php?ca_id=$caid&page=");?>
<?php echo paging(1000, $page, $total_page, "./enuri.php?ca_id=$caid&page="); ?>
</body>
</html>