묻고답하기
메인페이지 소스 해결문제
2016.03.14 19:50
<?php
if(!$required){echo "정상적인 접근이 아닙니다."; exit;}
?>
<!--상부 가상 프레임 시작-->
<?php
if(file_exists("../require/vfr_top.php")){
require "../require/vfr_top.php";
}
?>
<!--상부 가상 프레임 완료-->
<table width=100% cellspacing=0 cellpadding=0 align=center>
<tr>
<?php
if($_appbg == "y"){ if($_bgcol) $mainbgstr = " bgcolor=\"$_bgcol\""; else $mainbgstr = " background=\"/images/bg.gif\""; }
if($_outlinecol){
$mainoutlinestr = " <td width=1 bgcolor=$_outlinecol><img src=\"/images/fixer.gif\" width=1 height=1 border=0></td>
";
$mainleftmargin = $_leftmargin-1;
}else{
$mainleftmargin = $_leftmargin;
}
if($_arrange == "left" && $_leftmargin > 0){
$fixerstr = "<img src=\"/images/fixer.gif\" width=$mainleftmargin height=1 border=0>";
?>
<td width=<?php echo $mainleftmargin.$mainbgstr.">$fixerstr"; ?></td>
<?php
echo $mainoutlinestr;
}elseif($_arrange == "center"){
$fixerstr = " ";
$mainleftmargin = "*";
?>
<td width=<?php echo $mainleftmargin.$mainbgstr.">$fixerstr"; ?></td>
<?php
echo $mainoutlinestr;
}
?>
<td width=<?php echo $_pgwide; ?> valign=top>
<table width=100% cellspacing=0 cellpadding=0 align=center>
<tr>
<td width=<?php echo $_pgleft; ?> height=674 bgcolor="<?php echo $_leftbgcol; ?>" valign=top>
<!--좌측 가상 프레임(상품목록, 좌측 배너...) 시작-->
<?php
if(file_exists("../require/vfr_left.php")){
require "../require/vfr_left.php";
}
?>
<!--좌측 가상 프레임(상품목록, 좌측 배너...) 완료-->
</td>
<?php
if($_vlinecol){
?>
<td width=1 bgcolor="<?php echo $_vlinecol; ?>"><img src="/images/fixer.gif" width=1 height=1 border=0></td>
<?php
}
?>
<td width=<?php echo $_pgcenter; ?> bgcolor="<?php echo $_centerbgcol; ?>" valign=top>
<!--상단이미지 출력 시작-->
<?php
$is_order_rst = strpos($HTTP_SERVER_VARS[REQUEST_URI],"order_rst");
if($is_order_rst) $iname = "pt_order_rst.gif"; else $iname = "pt_{$req}.gif";
if(file_exists("../images/$iname") || file_exists("./images/$iname")){
?>
<table width=100% cellspacing=0 cellpadding=0 align=center>
<tr>
<td align=left><img src="/images/<?php echo $iname; ?>" border=0></td>
</tr>
</table>
<?php
?>
<!--상단이미지 출력 완료-->
<!--현위치출력 시작-->
<!--현위치출력 완료-->
<!--페이지제목 출력 시작-->
<!--페이지제목 출력 완료-->
<!--회사소개본문 완료-->
</td>
<td width=<?php echo $_pgright; ?> bgcolor="<?php echo $_rightbgcol; ?>" valign=top>
<?php
if(file_exists("../require/vfr_right.php")){
require "../require/vfr_right.php";
}
?>
</td>
</tr>
</table>
</td>
<?php
echo $mainoutlinestr;
?>
<td width=*<?php echo $mainbgstr; ?>> </td>
</tr>
</table>
<!--하부 가상 프레임 시작-->
<?php
if(file_exists("../require/vfr_bott.php")){
require "../require/vfr_bott.php";
}
?>
<!--하부 가상 프레임 완료-->
제가 모르고 소스를 지우고 적용을 해버렸습니다....
아무클릭해도 안뜨거나 error: syntax error, unexpected '<' in /home/june1510/public_html/require/previewnote.php on line 73 뜹니다....
도와주실분 안계신가요?
<!--상단이미지 출력 시작-->
<?php
$is_order_rst = strpos($HTTP_SERVER_VARS[REQUEST_URI],"order_rst");
if($is_order_rst) $iname = "pt_order_rst.gif"; else $iname = "pt_{$req}.gif";
if(file_exists("../images/$iname") || file_exists("./images/$iname")){
?>
<table width=100% cellspacing=0 cellpadding=0 align=center>
<tr>
<td align=left><img src="/images/<?php echo $iname; ?>" border=0></td>
</tr>
</table>
<?php
?>
에서 맨마지막 (에러에 나오는 73번줄이죠)
<?php
?>를
<?php
}
?>으로 해보세요. 에러 메세지 상으로는 중괄호가 안닫혀있는거 같습니다.