묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
마지막 줄에서 왜 parse error가 발생하나요?
2004.06.22 08:23
제가 보기엔 아무런 이상이 없는데 parse error가 납니다.
틀린게 있나 다 확인했는데 뭐가 문젠지 모르겠습니다.
보시고 도움 부탁드립니다.
<?
// 라이브러리 함수 파일 인크루드
include "lib.php";
// DB 연결
if(!$connect) $connect=dbConn();
// 현재 게시판 설정 읽어 오기
if($id) {
$setup=get_table_attrib($id);
// 설정되지 않은 게시판일때 에러 표시
if(!$setup[name]) Error("생성되지 않은 게시판입니다.<br><br>게시판을 생성후 사용하십시요","window.close");
}
// 멤버 정보 구해오기;;; 멤버가 있을때
$member=member_info();
if($member[no]) {
$member[name] = stripslashes($member[name]);
//-------------------------------------함수-------
// 제목 자르기 함수. 추가 함
Function text_cut($sub){
$max = 14;
$sub = stripslashes($sub);
$s_length = strlen($sub);
if($s_length > $max) {
for ($pos=$max;$pos>0 && ord($sub[$pos-1])>=127;$pos--);
if(($max-$pos)%2 == 0) {$sub = substr($sub, 0, $max);}
else {$sub = substr($sub, 0, $max+1);}
$sub=$sub."..";
return $sub;
}else {
return $sub;
}
}
//------------------------------------------------
//그레고리안으로 오늘을 계산(중요일정에서 오늘이후의 일정만 추출하기 위해서임)
$date=date("Ymd");
$t_year=substr($date,0,4);
$t_month=substr($date,4,2);
$t_day=substr($date,6,2);
$total_today=Day_Count($t_year,$t_month,$t_day);
//총 사용일정수 알아내기
$query_user="SELECT * FROM zetyx_board_$id WHERE ismember = $member[no]";
$result_user=mysql_query($query_user, $connect);
$total=mysql_num_rows($result_user);
//중요일정 뽑아오기
$query_y="SELECT * FROM zetyx_board_$id WHERE ismember = $member[no] AND y='y'AND x >='$total_today' ORDER BY x";
$result_y=mysql_query($query_y, $connect);
$hot_total=mysql_num_rows($result_y);
if($hot_total==0){$hot_no="<font class=ver9 color=navy>중요일정이 없습니다.</font>";}
echo "
<table width=100% border=0 cellpadding=5>
<tr>
<td valign=top align=center>
<div align=left><img src='+ '+ '$dir/icon/13.gif' align=absmiddle> <font class=ver9> <b> $member[name]'s calendar</b></font></div>
<table width=100% cellspacing=0 cellpadding=3 bordercolorlight=Gainsboro bordercolordark=white border=1>
<tr>
<td bgcolor=f6f6f6>
<font class=ver9>Total:</font><font class=ver9 color=9d9d9d> $total </font><br>
<font class=ver9>Importance:</font><font class=ver9 color=9d9d9d> $hot_total</font><br><br>";
//중요일정이 없을경우
if($hot_total==0) {
echo $hot_no;
} else {
echo "<table width=100% border=0>";
//중요일정을 $scale개수만큼 출력
if($first){
$first=0;
} //if
for($i=$first; $i<$first+$scale; $i++){
if($i<$hot_total){
mysql_data_seek($result_y, $i);
$hot=mysql_fetch_array($result_y);
$hot_title=text_cut($hot[sitelink1]);
$hot_day=$hot[subject];
$d_day=$hot[x]-$total_today;
$no=$hot[no];
echo "
<tr>
<td>
<a href='./view.php?$href&no=$no' title='$hot[title]'><font class=ver9 color=red>$hot_title</font></a> ($hot_day)
</td>
<td width=40>
<font class=ver8 color=navy>D-$d_day</font>
</td>
</tr>";
}//if
}//for
echo "</table>";
} //else
echo "</td></tr></table>";
echo "</td></tr></table>";
?>
틀린게 있나 다 확인했는데 뭐가 문젠지 모르겠습니다.
보시고 도움 부탁드립니다.
<?
// 라이브러리 함수 파일 인크루드
include "lib.php";
// DB 연결
if(!$connect) $connect=dbConn();
// 현재 게시판 설정 읽어 오기
if($id) {
$setup=get_table_attrib($id);
// 설정되지 않은 게시판일때 에러 표시
if(!$setup[name]) Error("생성되지 않은 게시판입니다.<br><br>게시판을 생성후 사용하십시요","window.close");
}
// 멤버 정보 구해오기;;; 멤버가 있을때
$member=member_info();
if($member[no]) {
$member[name] = stripslashes($member[name]);
//-------------------------------------함수-------
// 제목 자르기 함수. 추가 함
Function text_cut($sub){
$max = 14;
$sub = stripslashes($sub);
$s_length = strlen($sub);
if($s_length > $max) {
for ($pos=$max;$pos>0 && ord($sub[$pos-1])>=127;$pos--);
if(($max-$pos)%2 == 0) {$sub = substr($sub, 0, $max);}
else {$sub = substr($sub, 0, $max+1);}
$sub=$sub."..";
return $sub;
}else {
return $sub;
}
}
//------------------------------------------------
//그레고리안으로 오늘을 계산(중요일정에서 오늘이후의 일정만 추출하기 위해서임)
$date=date("Ymd");
$t_year=substr($date,0,4);
$t_month=substr($date,4,2);
$t_day=substr($date,6,2);
$total_today=Day_Count($t_year,$t_month,$t_day);
//총 사용일정수 알아내기
$query_user="SELECT * FROM zetyx_board_$id WHERE ismember = $member[no]";
$result_user=mysql_query($query_user, $connect);
$total=mysql_num_rows($result_user);
//중요일정 뽑아오기
$query_y="SELECT * FROM zetyx_board_$id WHERE ismember = $member[no] AND y='y'AND x >='$total_today' ORDER BY x";
$result_y=mysql_query($query_y, $connect);
$hot_total=mysql_num_rows($result_y);
if($hot_total==0){$hot_no="<font class=ver9 color=navy>중요일정이 없습니다.</font>";}
echo "
<table width=100% border=0 cellpadding=5>
<tr>
<td valign=top align=center>
<div align=left><img src='+ '+ '$dir/icon/13.gif' align=absmiddle> <font class=ver9> <b> $member[name]'s calendar</b></font></div>
<table width=100% cellspacing=0 cellpadding=3 bordercolorlight=Gainsboro bordercolordark=white border=1>
<tr>
<td bgcolor=f6f6f6>
<font class=ver9>Total:</font><font class=ver9 color=9d9d9d> $total </font><br>
<font class=ver9>Importance:</font><font class=ver9 color=9d9d9d> $hot_total</font><br><br>";
//중요일정이 없을경우
if($hot_total==0) {
echo $hot_no;
} else {
echo "<table width=100% border=0>";
//중요일정을 $scale개수만큼 출력
if($first){
$first=0;
} //if
for($i=$first; $i<$first+$scale; $i++){
if($i<$hot_total){
mysql_data_seek($result_y, $i);
$hot=mysql_fetch_array($result_y);
$hot_title=text_cut($hot[sitelink1]);
$hot_day=$hot[subject];
$d_day=$hot[x]-$total_today;
$no=$hot[no];
echo "
<tr>
<td>
<a href='./view.php?$href&no=$no' title='$hot[title]'><font class=ver9 color=red>$hot_title</font></a> ($hot_day)
</td>
<td width=40>
<font class=ver8 color=navy>D-$d_day</font>
</td>
</tr>";
}//if
}//for
echo "</table>";
} //else
echo "</td></tr></table>";
echo "</td></tr></table>";
?>