short open tag off

This commit is contained in:
gnuboard
2013-04-25 14:29:42 +09:00
parent e53639b07d
commit 67881a5d6f
253 changed files with 3188 additions and 3194 deletions

View File

@ -1,4 +1,4 @@
<?
<?php
$sub_menu = "200800";
include_once('./_common.php');
@ -41,12 +41,12 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
<tfoot>
<tr>
<td colspan="2">합계</td>
<td><strong><?=number_format($sum_count)?></strong></td>
<td><strong><?php echo number_format($sum_count) ?></strong></td>
<td>100%</td>
</tr>
</tfoot>
<tbody>
<?
<?php
$k = 0;
if ($i) {
for ($i=0; $i<24; $i++) {
@ -57,16 +57,16 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
$s_rate = number_format($rate, 1);
?>
<tr>
<td class="td_category"><?=$hour?></td>
<td class="td_category"><?php echo $hour ?></td>
<td>
<div class="visit_bar">
<span style="width:<?=$s_rate?>%"></span>
<span style="width:<?php echo $s_rate ?>%"></span>
</div>
</td>
<td class="td_bignum"><?=number_format($count)?></td>
<td class="td_num"><?=$s_rate?></td>
<td class="td_bignum"><?php echo number_format($count) ?></td>
<td class="td_num"><?php echo $s_rate ?></td>
</tr>
<?
<?php
}
} else {
echo '<tr><td colspan="'.$colspan.'" class="empty_table">자료가 없습니다.</td></tr>';
@ -76,6 +76,6 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
</table>
</section>
<?
<?php
include_once('./admin.tail.php');
?>