관리자: 쇼핑몰 따옴표 없거나 홑따옴표 쌍따옴표로

This commit is contained in:
whitedot
2013-01-30 16:18:00 +09:00
parent a8d750659c
commit 6c85d1a566
49 changed files with 795 additions and 794 deletions

View File

@ -22,12 +22,12 @@ $qstr = "page=$page&sort1=$sort1&sort2=$sort2";
<?=subtitle($g4[title])?>
<table cellpadding=0 cellspacing=0 width=100%>
<form name=frmitemqaform method=post action="./itemqaformupdate.php">
<input type=hidden name=w value='<? echo $w ?>'>
<input type=hidden name=iq_id value='<? echo $iq_id ?>'>
<input type=hidden name=page value='<? echo $page ?>'>
<input type=hidden name=sort1 value='<? echo $sort1 ?>'>
<input type=hidden name=sort2 value='<? echo $sort2 ?>'>
<form id="frmitemqaform" name="frmitemqaform" method=post action="./itemqaformupdate.php">
<input type="hidden" id="w" name="w" value='<? echo $w ?>'>
<input type="hidden" id="iq_id" name="iq_id" value='<? echo $iq_id ?>'>
<input type="hidden" id="page" name="page" value='<? echo $page ?>'>
<input type="hidden" id="sort1" name="sort1" value='<? echo $sort1 ?>'>
<input type="hidden" id="sort2" name="sort2" value='<? echo $sort2 ?>'>
<colgroup width=120></colgroup>
<colgroup width='' bgcolor=#ffffff></colgroup>
<tr><td colspan=2 height=2 bgcolor=#0E87F9></td></tr>
@ -37,28 +37,28 @@ $qstr = "page=$page&sort1=$sort1&sort2=$sort2";
</tr>
<tr class=ht>
<td>&nbsp;제 목</td>
<td><input type=text class=ed name=iq_subject required itenmae='제목' style='width:99%;' value='<?=conv_subject($iq[iq_subject],120)?>'></td>
<td><input type="text" class=ed id="iq_subject" name="iq_subject" required itenmae='제목' style='width:99%;' value='<?=conv_subject($iq[iq_subject],120)?>'></td>
</tr>
<tr>
<td>&nbsp;질 문</td>
<td style='padding-top:5px; padding-bottom:5px;'>
<?=textarea_size('iq_question')?>
<textarea id='iq_question' name='iq_question' rows="7" style='width:99%;' class=ed required itemname='질문'><? echo get_text($iq[iq_question]) ?></textarea>
<textarea id="iq_question" id="iq_question" name="iq_question" rows="7" style='width:99%;' class=ed required itemname='질문'><? echo get_text($iq[iq_question]) ?></textarea>
</td>
</tr>
<tr>
<td>&nbsp;답 변</td>
<td style='padding-top:5px; padding-bottom:5px;'>
<?=textarea_size('iq_answer')?>
<textarea id='iq_answer' name='iq_answer' rows="7" style='width:99%;' class=ed itemname='답변'><? echo get_text($iq[iq_answer]) ?></textarea>
<textarea id="iq_answer" id="iq_answer" name="iq_answer" rows="7" style='width:99%;' class=ed itemname='답변'><? echo get_text($iq[iq_answer]) ?></textarea>
</td>
</tr>
<tr><td colspan=2 height=1 bgcolor=#CCCCCC></td></tr>
</table>
<p align=center>
<input type=submit class=btn1 accesskey='s' value=' 확 인 '>&nbsp;
<input type=button class=btn1 accesskey='l' value=' 목 록 ' onclick="document.location.href='./itemqalist.php?<?=$qstr?>';">
<input type="submit" class=btn1 accesskey='s' value=' 확 인 '>&nbsp;
<input type="button" class=btn1 accesskey='l' value=' 목 록 ' onclick="document.location.href='./itemqalist.php?<?=$qstr?>';">
</form>
<?