(기분상의 이유로) <?=$value;?>를 <?=$value?> 로 수정

This commit is contained in:
2018-04-08 13:14:28 +09:00
parent 463994df42
commit fe53fb9359
19 changed files with 732 additions and 500 deletions
+3 -3
View File
@@ -88,7 +88,7 @@ if($admin['show_img_level'] >= 3) {
?>
<tr>
<td width=498 align=right rowspan=2 height=64 id=bg1>장수</td>
<td width=498><img src=<?=$image;?>/1001.jpg border=0 name=picture width=64 height=64></td>
<td width=498><img src=<?=$image?>/1001.jpg border=0 name=picture width=64 height=64></td>
</tr>
<?php
}
@@ -130,10 +130,10 @@ for($i=0; $i < $count; $i++) {
</body>
<script type="text/javascript">
function changeGen() {
sel = Math.floor(Math.random() * <?=$count;?>);
sel = Math.floor(Math.random() * <?=$count?>);
document.form1.face.selectedIndex = sel;
num = document.form1.face.value;
document.form1.picture.src="<?=$image;?>" + "/"+ num +".jpg";
document.form1.picture.src="<?=$image?>" + "/"+ num +".jpg";
}
function selectGen() {